diff --git a/Cargo.lock b/Cargo.lock index 5b7f3e1ee..cdfa11ccc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3066,9 +3066,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.19" +version = "0.4.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" +checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" dependencies = [ "serde", ] diff --git a/Cargo.toml b/Cargo.toml index 1cbc9f8b6..b5a161a88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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.19" +log = "0.4.20" [dev-dependencies] exocore-core = {version = "0.1.25", path = "./core", features = ["tests-utils"]} diff --git a/apps/example/Cargo.toml b/apps/example/Cargo.toml index af3f40c7a..8b9fec978 100644 --- a/apps/example/Cargo.toml +++ b/apps/example/Cargo.toml @@ -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.19" +log = "0.4.20" diff --git a/apps/host/Cargo.toml b/apps/host/Cargo.toml index d2ca2466c..d4dc947dd 100644 --- a/apps/host/Cargo.toml +++ b/apps/host/Cargo.toml @@ -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.19" +log = "0.4.20" reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls"] } thiserror = "1.0.44" diff --git a/apps/macros/Cargo.toml b/apps/macros/Cargo.toml index 250e8fbae..5fe6755ef 100644 --- a/apps/macros/Cargo.toml +++ b/apps/macros/Cargo.toml @@ -15,7 +15,7 @@ proc-macro = true [dependencies] anyhow = "1.0.72" futures = "0.3.28" -log = "0.4.19" +log = "0.4.20" quote = "1.0.32" syn = { version = "2.0.28", features = ["full", "fold"] } thiserror = "1.0.44" diff --git a/apps/sdk/Cargo.toml b/apps/sdk/Cargo.toml index 0b61b472e..8d3fdf6a5 100644 --- a/apps/sdk/Cargo.toml +++ b/apps/sdk/Cargo.toml @@ -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.19" +log = "0.4.20" quote = "1.0.32" thiserror = "1.0.44" chrono = { version = "0.4.26", default-features = false, features = [] } diff --git a/chain/Cargo.toml b/chain/Cargo.toml index 7b2c25f3b..e362106ac 100644 --- a/chain/Cargo.toml +++ b/chain/Cargo.toml @@ -25,7 +25,7 @@ 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.11.0" -log = "0.4.19" +log = "0.4.20" serde = { version = "1.0.183", features = ["derive"] } thiserror = "1.0.44" bytes = "1.4.0" diff --git a/clients/c/Cargo.toml b/clients/c/Cargo.toml index 286b90d99..8b62f2040 100644 --- a/clients/c/Cargo.toml +++ b/clients/c/Cargo.toml @@ -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.147" -log = "0.4.19" +log = "0.4.20" log4rs = "1.2.0" serde_json = "1.0.104" diff --git a/clients/web/Cargo.toml b/clients/web/Cargo.toml index ce7e8d9b3..fc089f6dd 100644 --- a/clients/web/Cargo.toml +++ b/clients/web/Cargo.toml @@ -17,7 +17,7 @@ exocore-store = {version = "0.1.25", path = "../../store", default-features = fa exocore-transport = {version = "0.1.25", path = "../../transport", default-features = false, features = ["p2p-web"]} futures = "0.3.28" js-sys = "0.3.64" -log = "0.4.19" +log = "0.4.20" thiserror = "1.0.44" wasm-bindgen = { version = "0.2.87", features = ["serde-serialize"] }# serde for serialization from JsValue wasm-bindgen-futures = "0.4.37" diff --git a/core/Cargo.toml b/core/Cargo.toml index 7ee08b0f2..2693d1e4c 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -37,7 +37,7 @@ exocore-protos = {version = "0.1.25", path = "../protos"} futures = { version = "0.3.28", features = ["async-await"] } libp2p = { version = "0.52.2", features = ["noise", "secp256k1"], default-features = false } libp2p-identity = { version = "0.2.2", features = ["secp256k1", "ed25519"], default-features = false } -log = "0.4.19" +log = "0.4.20" log4rs = { version = "1.2.0", optional = true } multihash = "0.19.0" multihash-codetable = {version="0.1", features=["digest", "sha3"]} diff --git a/discovery/Cargo.toml b/discovery/Cargo.toml index 8745aa64b..5ed435acc 100644 --- a/discovery/Cargo.toml +++ b/discovery/Cargo.toml @@ -18,7 +18,7 @@ anyhow = "1.0.72" base64 = "0.21.2" chrono = { version = "0.4.26", features = ["serde"] } futures = "0.3.28" -log = "0.4.19" +log = "0.4.20" rand = "0.8" reqwest = { version = "0.11.18", default-features = false, features = ["json", "rustls-tls"] } serde = "1.0.183" diff --git a/exo/Cargo.toml b/exo/Cargo.toml index 684a219eb..adbd74787 100644 --- a/exo/Cargo.toml +++ b/exo/Cargo.toml @@ -25,7 +25,7 @@ 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.6" -log = "0.4.19" +log = "0.4.20" log4rs = "1.2.0" rand = "0.8" reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls"] } diff --git a/store/Cargo.toml b/store/Cargo.toml index 13077dc1b..191b87d86 100644 --- a/store/Cargo.toml +++ b/store/Cargo.toml @@ -35,7 +35,7 @@ chrono = {version = "0.4.26", features = ["serde"]} exocore-protos = {version = "0.1.25", path = "../protos"} futures = "0.3.28" itertools = "0.11.0" -log = "0.4.19" +log = "0.4.20" smallvec = "1.11.0" thiserror = "1.0.44" diff --git a/transport/Cargo.toml b/transport/Cargo.toml index 7a2531f49..f94e05f24 100644 --- a/transport/Cargo.toml +++ b/transport/Cargo.toml @@ -29,7 +29,7 @@ hyper = {version = "0.14.27", features = ["full"], optional = true} libp2p = {version = "0.52.2", optional = true, default-features = false, features = ["noise", "websocket", "yamux", "ping", "identify", "macros", "tokio", "dns"]} libp2p-identity = { version = "0.2.2", features = ["secp256k1", "ed25519"], default-features = false } libp2p-mplex = {version = "0.40.0", optional = true} -log = "0.4.19" +log = "0.4.20" pin-project = "1.1.3" thiserror = "1.0.44" url = {version = "2.4.0", optional = true}