From 8ab254f73d3ab5bce21dcc37e3b32cfa66e46215 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Fri, 11 Nov 2022 15:37:10 -0800 Subject: cargo: lock down version numbers --- adenosine-cli/Cargo.toml | 26 +++++++++++++------------- adenosine-pds/Cargo.toml | 40 ++++++++++++++++++++-------------------- 2 files changed, 33 insertions(+), 33 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 " diff --git a/adenosine-pds/Cargo.toml b/adenosine-pds/Cargo.toml index 0ebbe6b..54395a1 100644 --- a/adenosine-pds/Cargo.toml +++ b/adenosine-pds/Cargo.toml @@ -13,39 +13,39 @@ readme = "../README.md" repository = "https://gitlab.com/bnewbold/adenosine" [dependencies] -anyhow = "*" -structopt = "*" +anyhow = "1" +structopt = "0.3" serde = "1" -serde_json = "*" -log = "*" -pretty_env_logger = "*" -libipld = "*" -ipfs-sqlite-block-store = "*" -rusqlite = { version = "*", features = ["bundled"] } -rusqlite_migration = "*" +serde_json = "1" +log = "0.4" +pretty_env_logger = "0.4" +libipld = "0.14" +ipfs-sqlite-block-store = "0.13" +rusqlite = { version = "0.26", features = ["bundled"] } +rusqlite_migration = "1" # NOTE: lexicon validation not implemented yet #jsonschema = "*" #schemafy = "*" -rouille = "*" +rouille = "3" # NOTE: vendored for now #iroh-car = "*" adenosine-cli = { version = "0.1.0", path = "../adenosine-cli" } tokio = { version = "1", features = ["full"] } futures = "0.3" -sha256 = "*" -lazy_static = "*" +sha256 = "1" +lazy_static = "1" bcrypt = "0.13" -data-encoding = "*" -k256 = { version = "*", features = ["ecdsa"] } -p256 = { version = "*", features = ["ecdsa"] } -multibase = "*" +data-encoding = "2" +k256 = { version = "0.11", features = ["ecdsa"] } +p256 = { version = "0.11", features = ["ecdsa"] } +multibase = "0.9" ucan = "0.7.0-alpha.1" # TODO: replace this with data-encoding or similar; this is only needed for ucan_p256 stuff -bs58 = "*" -async-trait = "*" -dotenv = "*" +bs58 = "0.4" +async-trait = "0.1" +dotenv = "0.15" askama = { version = "0.11", features = ["serde-json"] } -time = { version = "*", features = ["formatting"] } +time = { version = "0.3", features = ["formatting"] } # for vendored iroh-car thiserror = "1.0" -- cgit v1.2.3