diff options
author | Dylan DPC <99973273+Dylan-DPC@users.noreply.github.com> | 2022-12-15 17:33:07 +0100 |
---|---|---|
committer | Nick Gerace <nickagerace@gmail.com> | 2022-12-19 02:23:59 -0500 |
commit | bf4050b5fde024962d7fe4a575d791911ef1871c (patch) | |
tree | 4df00440f4220f27c36fa19088b9ebcbaaf1ea08 | |
parent | b0f3361dc91e10b437aebbd172464c66cc6ac55e (diff) | |
download | gfold-bf4050b5fde024962d7fe4a575d791911ef1871c.zip |
Update Cargo.toml
-rw-r--r-- | crates/gfold/Cargo.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/gfold/Cargo.toml b/crates/gfold/Cargo.toml index 72c7cd4..720dad4 100644 --- a/crates/gfold/Cargo.toml +++ b/crates/gfold/Cargo.toml @@ -16,18 +16,18 @@ version = "4.1.0" anyhow = { version = "1", features = ["backtrace"] } clap = { version = "4", features = ["derive"] } dirs = "4" -git2 = { version = "0", default_features = false } -log = "0" +git2 = { version = "0.15", default_features = false } +log = "0.4" rayon = "1" serde = { version = "1", features = ["derive"] } serde_json = "1" termcolor = "1" thiserror = "1" -toml = "0" +toml = "0.5" # Source: https://github.com/env-logger-rs/env_logger/blob/v0.9.0/Cargo.toml#L47 # Removed features: ["regex", "termcolor"] -env_logger = { version = "0", features = ["atty", "humantime"], default_features = false } +env_logger = { version = "0.9", features = ["atty", "humantime"], default_features = false } [dev-dependencies] pretty_assertions = "1" |