diff options
author | James Campos <james.r.campos@gmail.com> | 2021-01-03 22:11:13 -0800 |
---|---|---|
committer | James Campos <james.r.campos@gmail.com> | 2021-01-03 22:11:13 -0800 |
commit | dcf3178721beae1a98a6d1030f1f679be7d819f1 (patch) | |
tree | 74005996b01f48a77fe602f937e01d03ee1d0509 | |
parent | f20adc60a3dcc744a3adbd40ba6aa6917f06d9c7 (diff) | |
download | bk-dcf3178721beae1a98a6d1030f1f679be7d819f1.tar.gz |
stricter dep versions
-rw-r--r-- | Cargo.toml | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -11,15 +11,15 @@ readme = "README.md" repository = "https://github.com/aeosynth/bk" [dependencies] -anyhow = "1" -argh = "0" -crossterm = "0" -ron = "0" -roxmltree = "0" -serde = "1" -unicode-width = "0" +anyhow = "^1.0" +argh = "^0.1" +crossterm = "^0.19" +ron = "^0.6" +roxmltree = "^0.14" +serde = "^1.0" +unicode-width = "^0.1" [dependencies.zip] -version = "0" +version = "^0.5" default-features = false features = ["deflate"] |