Skip to content

Commit

Permalink
Bump deps (#1549)
Browse files Browse the repository at this point in the history
  • Loading branch information
appaquet authored Jun 26, 2023
1 parent 6a0c33b commit 20bb96a
Show file tree
Hide file tree
Showing 16 changed files with 264 additions and 214 deletions.
408 changes: 229 additions & 179 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ exocore-discovery = {version = "0.1.25", path = "./discovery", default-features
exocore-protos = {version = "0.1.25", path = "./protos", default-features = false, optional = true}
exocore-store = {version = "0.1.25", path = "./store", default-features = false, optional = true}
exocore-transport = {version = "0.1.25", path = "./transport", default-features = false, optional = true}
log = "0.4.18"
log = "0.4.19"

[dev-dependencies]
exocore-core = {version = "0.1.25", path = "./core", features = ["tests-utils"]}
Expand Down
2 changes: 1 addition & 1 deletion apps/example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ crate-type = ['cdylib']
[dependencies]
exocore = {version = "0.1.3", path = "../..", default-features = false, features = ["apps-sdk"]}
futures = "0.3.28"
log = "0.4.18"
log = "0.4.19"
2 changes: 1 addition & 1 deletion apps/host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ exocore-core = {version = "0.1.25", path = "../../core"}
exocore-protos = {version = "0.1.25", path = "../../protos"}
exocore-store = {version = "0.1.25", path = "../../store"}
futures = "0.3.28"
log = "0.4.18"
log = "0.4.19"
reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls"] }
thiserror = "1.0.40"

Expand Down
4 changes: 2 additions & 2 deletions apps/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ proc-macro = true
[dependencies]
anyhow = "1.0.71"
futures = "0.3.28"
log = "0.4.18"
log = "0.4.19"
quote = "1.0.28"
syn = { version = "2.0.18", features = ["full", "fold"] }
syn = { version = "2.0.22", features = ["full", "fold"] }
thiserror = "1.0.40"
2 changes: 1 addition & 1 deletion apps/sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ exocore-protos = {version = "0.1.25", path = "../../protos"}
exocore-store = {version = "0.1.25", path = "../../store", default-features = false}
futures = "0.3.28"
lazy_static = "1.4.0"
log = "0.4.18"
log = "0.4.19"
quote = "1.0.28"
thiserror = "1.0.40"
chrono = { version = "0.4.26", default-features = false, features = [] }
Expand Down
6 changes: 3 additions & 3 deletions chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ exocore-core = {version = "0.1.25", path = "../core"}
exocore-protos = {version = "0.1.25", path = "../protos"}
exocore-transport = {version = "0.1.25", path = "../transport", default-features = false}
futures = "0.3.28"
itertools = "0.10.5"
log = "0.4.18"
itertools = "0.11.0"
log = "0.4.19"
serde = { version = "1.0.164", features = ["derive"] }
thiserror = "1.0.40"
bytes = "1.4.0"

# For directory chain
extindex = { version = "0.5.0", optional = true }
memmap2 = { version = "0.7.0", optional = true }
memmap2 = { version = "0.7.1", optional = true }

# For tests
tempfile = { version = "3.6.0", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions chain/src/engine/pending_sync/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ impl<PS: PendingStore> PendingSynchronizer<PS> {
/// ranges of operation ids that need to be merged and/or compared to
/// our local store. See `handle_incoming_sync_ranges` for more details on
/// the merge / comparison.
///
/// If we have any differences with remote node data, we send a request back
/// with more data that will allow converging in the same stored data.
pub fn handle_incoming_sync_request<F: FrameReader>(
Expand Down Expand Up @@ -180,15 +180,15 @@ impl<PS: PendingStore> PendingSynchronizer<PS> {
/// Handles the ranges coming from a sync request. For each range, we check
/// if we have the same information locally, and take actions based on
/// it.
///
/// For each range, actions include:
/// * Doing nothing if both remote and local are equals
/// * Sending full operations if remote is empty while we have operations
/// locally
/// * Sending headers operations if we differences without any headers to
/// compared with
/// * Diffing our headers vs remote headers if headers are included.
///
/// In any case, if the range includes operations, we always apply them
/// first.
fn handle_incoming_sync_ranges<'a, I>(
Expand Down
4 changes: 2 additions & 2 deletions clients/c/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ exocore-transport = {version = "0.1.25", path = "../../transport", features = ["
weak-table = "0.3.2"
futures = "0.3.28"
libc = "0.2.146"
log = "0.4.18"
log = "0.4.19"
log4rs = "1.2.0"
serde_json = "1.0.96"
serde_json = "1.0.99"
10 changes: 5 additions & 5 deletions clients/web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ exocore-protos = {version = "0.1.25", path = "../../protos", default-features =
exocore-store = {version = "0.1.25", path = "../../store", default-features = false, features = ["remote"]}
exocore-transport = {version = "0.1.25", path = "../../transport", default-features = false, features = ["p2p-web"]}
futures = "0.3.28"
js-sys = "0.3.63"
log = "0.4.18"
js-sys = "0.3.64"
log = "0.4.19"
thiserror = "1.0.40"
wasm-bindgen = { version = "0.2.86", features = ["serde-serialize"] }# serde for serialization from JsValue
wasm-bindgen-futures = "0.4.36"
wasm-bindgen = { version = "0.2.87", features = ["serde-serialize"] }# serde for serialization from JsValue
wasm-bindgen-futures = "0.4.37"
wasm-logger = "0.2.0"
web-sys = { version = "0.3.63", features = ["Storage", "Window"] }
web-sys = { version = "0.3.64", features = ["Storage", "Window"] }

# Needed to force rand 0.7 to load with wasm support
rand07 = {package = "rand", version = "0.7", features = ["wasm-bindgen"]}
12 changes: 6 additions & 6 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ exocore-protos = {version = "0.1.25", path = "../protos"}
futures = { version = "0.3.28", features = ["async-await"] }
libp2p = { version = "0.51.3", features = ["noise", "secp256k1"], default-features = false }
libp2p-identity = { version = "0.1.2", features = ["secp256k1"], default-features = false }
log = "0.4.18"
log = "0.4.19"
log4rs = { version = "1.2.0", optional = true }
multihash = "0.19.0"
multihash-codetable = {version="0.1", features=["digest", "sha3"]}
Expand All @@ -46,21 +46,21 @@ petname = "1.1.3"
rand = "0.8"
serde = "1.0.164"
serde_derive = "1.0.164"
serde_json = "1.0.96"
serde_yaml = "0.9.21"
serde_json = "1.0.99"
serde_yaml = "0.9.22"
shadow-rs = { version = "0.23.0", default-features = false }
thiserror = "1.0.40"
url = "2.4.0"
uuid = { version = "1.2.2", features = ["v4", "wasm-bindgen"] }
wasm-timer = "0.2.5"

# web
web-sys = { version = "0.3.63", features = ["Storage"], optional = true }
web-sys = { version = "0.3.64", features = ["Storage"], optional = true }

[target."cfg(target_arch = \"wasm32\")".dependencies]
getrandom = "0.2.10"
wasm-bindgen = "0.2.86"
wasm-bindgen-futures = "0.4.36"
wasm-bindgen = "0.2.87"
wasm-bindgen-futures = "0.4.37"
chrono = { version = "0.4.26", default-features = false, features = [] }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions discovery/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ anyhow = "1.0.71"
base64 = "0.21.2"
chrono = { version = "0.4.26", features = ["serde"] }
futures = "0.3.28"
log = "0.4.18"
log = "0.4.19"
rand = "0.8"
reqwest = { version = "0.11.18", default-features = false, features = ["json", "rustls-tls"] }
serde = "1.0.164"
serde_derive = "1.0.164"
serde_json = "1.0.96"
serde_json = "1.0.99"
thiserror = "1.0.40"
wasm-timer = "0.2.5"

Expand Down
6 changes: 3 additions & 3 deletions exo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version = "0.1.25"
[dependencies]
anyhow = { version="1.0.71", features = ["backtrace"] }
bytes = "1.4.0"
clap = { version = "4.3.3", features = ["derive", "env"] }
clap = { version = "4.3.8", features = ["derive", "env"] }
console = "0.15.7"
dialoguer = "0.10.4"
dirs-next = "2.0.0"
Expand All @@ -25,13 +25,13 @@ exocore-store = {version = "0.1.25", path = "../store"}
exocore-transport = {version = "0.1.25", path = "../transport", features = ["http-server"]}
futures = "0.3.28"
indicatif = "0.17.5"
log = "0.4.18"
log = "0.4.19"
log4rs = "1.2.0"
rand = "0.8"
reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls"] }
serde = "1.0.164"
serde_derive = "1.0.164"
serde_json = "1.0.96"
serde_json = "1.0.99"
tempfile = "3.6.0"
thiserror = "1.0.40"
tokio = { version = "1.28.2", features = ["macros"], default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion protos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ prost-types = "0.11.9"
protobuf = "3.2.0"
serde = "1.0.164"
serde_derive = "1.0.164"
serde_json = "1.0.96"
serde_json = "1.0.99"
thiserror = "1.0.40"

[build-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ bytes = "1.4.0"
chrono = {version = "0.4.26", features = ["serde"]}
exocore-protos = {version = "0.1.25", path = "../protos"}
futures = "0.3.28"
itertools = "0.10.5"
log = "0.4.18"
itertools = "0.11.0"
log = "0.4.19"
smallvec = "1.10.0"
thiserror = "1.0.40"

Expand All @@ -51,7 +51,7 @@ extsort = {version = "0.4.2", optional = true}
lru = {version = "0.10.0", optional = true}
serde = {version = "1.0.164", optional = true}
serde_derive = {version = "1.0.164", optional = true}
serde_json = {version = "1.0.96", optional = true}
serde_json = {version = "1.0.99", optional = true}
tantivy = {version = "0.19.2", optional = true}

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ gloo-timers = {version = "0.2", optional = true}
hyper = {version = "0.14.26", features = ["full"], optional = true}
libp2p = {version = "0.51.3", optional = true, default-features = false, features = ["mplex", "noise", "websocket", "yamux", "ping", "identify", "macros", "tokio", "dns"]}
libp2p-identity = { version = "0.1.2", features = ["secp256k1"], default-features = false }
log = "0.4.18"
log = "0.4.19"
pin-project = "1.1.0"
thiserror = "1.0.40"
url = {version = "2.4.0", optional = true}
Expand Down

0 comments on commit 20bb96a

Please sign in to comment.