diff --git a/Cargo.lock b/Cargo.lock index 6d1ab2c5..41b3f3c5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1223,9 +1223,9 @@ checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" [[package]] name = "futures" -version = "0.3.25" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0" +checksum = "13e2792b0ff0340399d58445b88fd9770e3489eff258a4cbc1523418f12abf84" dependencies = [ "futures-channel", "futures-core", @@ -1238,9 +1238,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.25" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed" +checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5" dependencies = [ "futures-core", "futures-sink", @@ -1248,15 +1248,15 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.25" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac" +checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608" [[package]] name = "futures-executor" -version = "0.3.25" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2" +checksum = "e8de0a35a6ab97ec8869e32a2473f4b1324459e14c29275d14b10cb1fd19b50e" dependencies = [ "futures-core", "futures-task", @@ -1276,15 +1276,15 @@ dependencies = [ [[package]] name = "futures-io" -version = "0.3.25" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb" +checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531" [[package]] name = "futures-macro" -version = "0.3.25" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d" +checksum = "95a73af87da33b5acf53acfebdc339fe592ecf5357ac7c0a7734ab9d8c876a70" dependencies = [ "proc-macro2", "quote", @@ -1293,21 +1293,21 @@ dependencies = [ [[package]] name = "futures-sink" -version = "0.3.25" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9" +checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364" [[package]] name = "futures-task" -version = "0.3.25" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea" +checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366" [[package]] name = "futures-util" -version = "0.3.25" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6" +checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1" dependencies = [ "futures-channel", "futures-core", diff --git a/action/Cargo.toml b/action/Cargo.toml index 315e174a..512a0a42 100644 --- a/action/Cargo.toml +++ b/action/Cargo.toml @@ -20,7 +20,7 @@ chord-core = { path = "../core", version = "0.1.22" } chord-util = { path = "../util", version = "0.1.22", optional = true } serde = { version = "1.0" } itertools = "0.10.5" -futures = { version = "0.3.25" } +futures = { version = "0.3.26" } log = { version = "0.4.14", features = ["std"] } reqwest = { version = "0.11.14", features = ['stream'], optional = true } md5 = { version = "0.7.0", optional = true } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index e42e8473..0289a341 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -28,7 +28,7 @@ tokio = { version = "1.25", features = ["fs", "time", "tracing", "process", "mac log = { version = "0.4.14", features = ["std"] } tracing = "0.1" tracing-subscriber = { version = "0.3.16", features = ['env-filter'] } -futures = "0.3.25" +futures = "0.3.26" itertools = "0.10.5" flume = "0.10.14" structopt = "0.3" diff --git a/flow/Cargo.toml b/flow/Cargo.toml index cb7b6a9a..ec20b716 100644 --- a/flow/Cargo.toml +++ b/flow/Cargo.toml @@ -17,7 +17,7 @@ repository = "https://github.com/bit-ranger/chord" [dependencies] chord-core = { path = "../core", version = "0.1.22" } itertools = "0.10.5" -futures = "0.3.25" +futures = "0.3.26" handlebars = "4.3.6" log = { version = "0.4.14", features = ["std"] } tracing = "0.1" diff --git a/output/Cargo.toml b/output/Cargo.toml index 3d37538d..7f9c4b61 100644 --- a/output/Cargo.toml +++ b/output/Cargo.toml @@ -21,7 +21,7 @@ chrono = { version = "0.4.23", features = ["serde"] } itertools = { version = "0.10.5" } log = { version = "0.4.14", features = ["std"] } async-trait = "0.1.64" -futures = "0.3.25" +futures = "0.3.26" csv = { version = "1.1.5", optional = true } reqwest = { version = "0.11.14", features = ['stream'], optional = true } thiserror = "1.0" diff --git a/util/Cargo.toml b/util/Cargo.toml index 8fc06240..cc15faa9 100644 --- a/util/Cargo.toml +++ b/util/Cargo.toml @@ -18,6 +18,6 @@ repository = "https://github.com/bit-ranger/chord" chord-core = { path = "../core", version = "0.1.22" } serde = { version = "1.0" } reqwest = { version = "0.11.14", features = ['stream'] } -futures = "0.3.25" +futures = "0.3.26" log = { version = "0.4.14", features = ["std"] } thiserror = "1.0" \ No newline at end of file diff --git a/web/Cargo.toml b/web/Cargo.toml index 87f50372..af7dffd3 100644 --- a/web/Cargo.toml +++ b/web/Cargo.toml @@ -25,7 +25,7 @@ chord-util = { path = "../util", version = "0.1.22" } tokio = { version = "1.25", features = ["fs", "time", "tracing", "process", "macros"] } serde = { version = "1.0" } -futures = "0.3.25" +futures = "0.3.26" itertools = "0.10.5" log = { version = "0.4.14", features = ["std"] } tracing = "0.1"