diff --git a/Cargo.lock b/Cargo.lock index e1c015e..76a7e9b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -620,7 +620,7 @@ dependencies = [ [[package]] name = "tiempo" -version = "1.0.1" +version = "1.0.2" dependencies = [ "ansi_term 0.12.1", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 949a51c..3cd955b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,27 +1,22 @@ +[[bin]] +name = "t" +path = "src/main.rs" + [package] name = "tiempo" -version = "1.0.1" +repository = "https://gitlab.com/categulario/tiempo-rs" authors = ["Abraham Toriz "] edition = "2018" description = "A command line time tracker" license = "GPL-3.0" documentation = "https://gitlab.com/categulario/tiempo-rs" homepage = "https://gitlab.com/categulario/tiempo-rs" -repository = "https://gitlab.com/categulario/tiempo-rs" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[[bin]] -name = "t" -path = "src/main.rs" +version = "1.0.2" [dependencies] clap = "2" -chrono = { version = "0.4", features = ["serde"] } -rusqlite = { version = "0.25.3", features = ["chrono", "bundled"] } thiserror = "1" directories = "3" -serde = { version = "1.0", features = ["derive"] } serde_yaml = "0.8" toml = "0.5" itertools = "0.10" @@ -34,5 +29,17 @@ tempfile = "3" serde_json = "1.0" hostname = "0.3" +[dependencies.chrono] +version = "0.4" +features = ["serde"] + +[dependencies.rusqlite] +version = "0.25.3" +features = ["chrono", "bundled"] + +[dependencies.serde] +version = "1.0" +features = ["derive"] + [dev-dependencies] pretty_assertions = "0.7.2"