diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-11 15:37:10 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-11 15:42:07 -0800 |
commit | 8ab254f73d3ab5bce21dcc37e3b32cfa66e46215 (patch) | |
tree | e45df8ee4f6a03abda4e2b25b089f63ccaf4edc2 /adenosine-cli | |
parent | f853b923da9fd7151033990c73cc06bdee7dc377 (diff) | |
download | adenosine-8ab254f73d3ab5bce21dcc37e3b32cfa66e46215.tar.gz adenosine-8ab254f73d3ab5bce21dcc37e3b32cfa66e46215.zip |
cargo: lock down version numbersv0.1.0
Diffstat (limited to 'adenosine-cli')
-rw-r--r-- | adenosine-cli/Cargo.toml | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/adenosine-cli/Cargo.toml b/adenosine-cli/Cargo.toml index 3f69c9b..45a2998 100644 --- a/adenosine-cli/Cargo.toml +++ b/adenosine-cli/Cargo.toml @@ -15,26 +15,26 @@ readme = "../README.md" repository = "https://gitlab.com/bnewbold/adenosine" [dependencies] -structopt = "*" +structopt = "0.3" # NOTE: could try 'rustls-tls' feature instead of default native TLS? reqwest = { version = "0.11", features = ["blocking", "json"] } serde = { version = "1", features = ["serde_derive"] } serde_json = "1" -base64 = "*" -regex = "*" -lazy_static = "*" -dotenv = "*" -data-encoding = "*" -rand = "*" -time = { version = "*", features = ["formatting"] } +base64 = "0.13" +regex = "1" +lazy_static = "1" +dotenv = "0.15" +data-encoding = "2" +rand = "0.8" +time = { version = "0.3", features = ["formatting"] } # uncertain about these... -anyhow = "1.0" +anyhow = "1" atty = "0.2" -colored_json = "*" -termcolor = "*" -log = "*" -env_logger = "*" +colored_json = "3" +termcolor = "1" +log = "0.4" +env_logger = "0.7" [package.metadata.deb] maintainer = "Bryan Newbold <bnewbold@robocracy.org>" |