diff options
| -rw-r--r-- | dotup/Cargo.toml | 8 | ||||
| -rw-r--r-- | dotup_cli/Cargo.toml | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/dotup/Cargo.toml b/dotup/Cargo.toml index 8acfe85..fe4876c 100644 --- a/dotup/Cargo.toml +++ b/dotup/Cargo.toml | |||
| @@ -4,11 +4,11 @@ name = "dotup" | |||
| 4 | version = "0.1.0" | 4 | version = "0.1.0" |
| 5 | 5 | ||
| 6 | [dependencies] | 6 | [dependencies] |
| 7 | log = "*" | 7 | log = "0.4" |
| 8 | serde = { version = "*", features = ["derive"] } | 8 | serde = { version = "*", features = ["derive"] } |
| 9 | thiserror = "*" | 9 | thiserror = "1.0" |
| 10 | toml = "*" | 10 | toml = "0.5" |
| 11 | slotmap = "*" | 11 | slotmap = "1.0" |
| 12 | 12 | ||
| 13 | [dev-dependencies] | 13 | [dev-dependencies] |
| 14 | tempfile = "3.2" | 14 | tempfile = "3.2" |
diff --git a/dotup_cli/Cargo.toml b/dotup_cli/Cargo.toml index cf92f9e..8fdda0e 100644 --- a/dotup_cli/Cargo.toml +++ b/dotup_cli/Cargo.toml | |||
| @@ -9,16 +9,16 @@ path = "src/main.rs" | |||
| 9 | doc = false | 9 | doc = false |
| 10 | 10 | ||
| 11 | [dependencies] | 11 | [dependencies] |
| 12 | anyhow = "*" | 12 | anyhow = "1.0" |
| 13 | clap = "3.0.0-beta.2" | 13 | clap = "3.0.0-beta.2" |
| 14 | log = "*" | 14 | log = "0.4" |
| 15 | 15 | ||
| 16 | [dependencies.dotup] | 16 | [dependencies.dotup] |
| 17 | path = "../dotup" | 17 | path = "../dotup" |
| 18 | 18 | ||
| 19 | [dependencies.flexi_logger] | 19 | [dependencies.flexi_logger] |
| 20 | features = ["colors"] | 20 | features = ["colors"] |
| 21 | version = "*" | 21 | version = "0.18" |
| 22 | 22 | ||
| 23 | [dev-dependencies] | 23 | [dev-dependencies] |
| 24 | tempfile = "3.2" | 24 | tempfile = "3.2" |
