diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-08-22 20:28:38 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-08-22 20:28:38 -0700 |
| commit | 0e69cec02fe26114bc1abf1c5470c0053d0ceaa4 (patch) | |
| tree | 46cea4da7683cbaaa4373b6ebdda194ee3f052b5 | |
| parent | 8ead45811875a045faca7b600c9709fc6d06c94b (diff) | |
cleanup files for packaging
| -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); - } -} |
