diff options
| -rw-r--r-- | Cargo.lock | 2 | ||||
| -rw-r--r-- | Cargo.toml | 5 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | src/lib.rs | 16 |
4 files changed, 10 insertions, 15 deletions
@@ -66,7 +66,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "ffxiv-chronowatcher" -version = "0.1.0" +version = "0.0.1" dependencies = [ "chrono", "serde", @@ -1,7 +1,10 @@ [package] name = "ffxiv-chronowatcher" -version = "0.1.0" +version = "0.0.1" edition = "2021" +exclude = [ + "src/main.rs", +] [dependencies] chrono = "0.4.38" @@ -1,2 +1,2 @@ # Chronowatcher -Currently a WIP
\ No newline at end of file +Chronowatcher is a Rust library for getting the time and weather of locations in Final Fantasy XIV
\ No newline at end of file @@ -1,14 +1,6 @@ -pub fn add(left: u64, right: u64) -> u64 { - left + right -} +pub mod eorzean_time; +pub mod eorzean_weather; -#[cfg(test)] -mod tests { - use super::*; +pub use eorzean_time::*; +pub use eorzean_weather::*; - #[test] - fn it_works() { - let result = add(2, 2); - assert_eq!(result, 4); - } -} |
