Skip to content

Commit

Permalink
chore: upgrade dependencies (compatible) (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
therustmonk committed Apr 4, 2023
1 parent 4d9d070 commit 50f550d
Show file tree
Hide file tree
Showing 8 changed files with 226 additions and 164 deletions.
312 changes: 187 additions & 125 deletions Cargo.lock

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,32 +22,32 @@ tari_common = { git = "https://github.com/tari-project/tari", tag = "v0.38.7" }
tari_utilities = { git = "https://github.com/tari-project/tari_utilities.git", tag = "v0.4.7" }
tari_sdm_launchpad = { path = "../libs/sdm-launchpad", features = ["tauri"] }

anyhow = "1.0.68"
anyhow = "1.0.70"
bollard = "0.14.0"
chrono = "0.4.23"
chrono = "0.4.24"
config = "0.13.3"
derive_more = "0.99.17"
env_logger = "0.10.0"
lazy_static = "1.4.0"
log = "0.4.17"
rand = "0.8.5"
serde_json = "1.0.91"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.95"
serde = { version = "1.0.159", features = ["derive"] }
strum = { version = "0.24.1", features = ["derive"] }
tauri = { version = "1.2.4", features = ["api-all", "cli", "macos-private-api"] }
toml = "0.5.11"
toml = "0.7.3"
tor-hash-passwd = "1.0.1"
thiserror = "1.0.38"
tokio = { version = "1.25.0", features = ["sync"] }
futures = "0.3.26"
regex = "1.7.1"
thiserror = "1.0.40"
tokio = { version = "1.27.0", features = ["sync"] }
futures = "0.3.28"
regex = "1.7.3"
derivative = "2.2.0"
# Forcing this version due to conflicts in dependencies
sqlx-core = { version = "=0.5.7" }
tauri-plugin-sql = { git = "https://github.com/tauri-apps/tauri-plugin-sql", features = ["sqlite"], branch = "release" }
tonic = "0.6.2"
hex = "0.4.3"
reqwest = { version = "0.11.14", features = ["json"] }
reqwest = { version = "0.11.16", features = ["json"] }

[features]
# Hack to fix a tauri bug
Expand Down
6 changes: 3 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ tari_sim_launchpad = { path = "../libs/sim-launchpad", optional = true }
tari_sdm_assets = { path = "../libs/sdm-assets" }
tari_launchpad_protocol = { path = "../libs/protocol" }

anyhow = "1.0.68"
crossterm = "0.26.0"
anyhow = "1.0.70"
crossterm = "0.26.1"
env_logger = "0.10.0"
log = "0.4.17"
log4rs = "1.2.0"
tokio = { version = "1.25.0", features = ["signal"] }
tokio = { version = "1.27.0", features = ["signal"] }
tui = "0.19.0"
rand = "0.8.5"
strum = "0.24.1"
Expand Down
10 changes: 5 additions & 5 deletions libs/protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ edition = "2021"
[dependencies]
tari_utilities = { git = "https://github.com/tari-project/tari_utilities.git", tag = "v0.4.7" }

anyhow = "1.0.68"
byte-unit = { version = "4.0.18", features = ["serde"] }
anyhow = "1.0.70"
byte-unit = { version = "4.0.19", features = ["serde"] }
derive_more = "0.99.17"
serde = "1.0.152"
serde = "1.0.159"
strum = { version = "0.24.1", features = ["derive"] }
thiserror = "1.0.38"
chrono = "0.4.23"
thiserror = "1.0.40"
chrono = "0.4.24"
4 changes: 2 additions & 2 deletions libs/sdm-assets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ license = "BSD-3-Clause"
repository = "https://github.com/tari-project/tari-launchpad"

[dependencies]
anyhow = "1.0.68"
anyhow = "1.0.70"
dirs-next = "2.0.0"
tokio = { version = "1.25.0", features = ["fs"] }
tokio = { version = "1.27.0", features = ["fs"] }
18 changes: 9 additions & 9 deletions libs/sdm-launchpad/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ tari_wallet_grpc_client = { git = "https://github.com/tari-project/tari", tag =
tari_utilities = { git = "https://github.com/tari-project/tari_utilities.git", tag = "v0.4.7" }
openssl = { version = "0.10", features = ["vendored"] }

anyhow = "1.0.68"
async-trait = "0.1.64"
futures = "0.3.26"
anyhow = "1.0.70"
async-trait = "0.1.68"
futures = "0.3.28"
log = "0.4.17"
rand = "0.8.5"
regex = "1.7.1"
serde = "1.0.152"
serde_json = "1.0.91"
regex = "1.7.3"
serde = "1.0.159"
serde_json = "1.0.95"
tauri = { version = "1.2.4", features = ["api-all"], optional = true }
thiserror = "1.0.38"
thiserror = "1.0.40"
tor-hash-passwd = "1.0.1"
tokio = "1.25.0"
toml = "0.5.11"
tokio = "1.27.0"
toml = "0.7.3"
tonic = "0.6.2"
14 changes: 7 additions & 7 deletions libs/sdm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ edition = "2021"
[dependencies]
tari_launchpad_protocol = { path = "../protocol" }

anyhow = "1.0.68"
async-trait = "0.1.64"
anyhow = "1.0.70"
async-trait = "0.1.68"
bollard = "0.14.0"
derive_more = "0.99.17"
futures = "0.3.26"
futures = "0.3.28"
log = "0.4.17"
thiserror = "1.0.38"
tokio = { version = "1.25.0", features = ["macros"] }
tokio-stream = { version = "0.1.11", features = ["sync"] }
chrono = "0.4.23"
thiserror = "1.0.40"
tokio = { version = "1.27.0", features = ["macros"] }
tokio-stream = { version = "0.1.12", features = ["sync"] }
chrono = "0.4.24"
6 changes: 3 additions & 3 deletions libs/sim-launchpad/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tari_launchpad_protocol = { path = "../protocol" }
tari_sdm_launchpad = { path = "../sdm-launchpad" }
tari_sdm = { path = "../sdm" }

anyhow = "1.0.68"
tokio = { version = "1.25.0", features = ["fs"] }
chrono = "0.4.23"
anyhow = "1.0.70"
tokio = { version = "1.27.0", features = ["fs"] }
chrono = "0.4.24"
rand = "0.8.5"

0 comments on commit 50f550d

Please sign in to comment.