From 522c7112d809bace4733927fee264bbc19ff0198 Mon Sep 17 00:00:00 2001 From: Samuel Hicks Date: Mon, 22 Jul 2024 13:14:38 +0100 Subject: [PATCH] Updated example dependency versions --- examples/chunked_response/Cargo.toml | 4 ++-- examples/custom_extractor/Cargo.toml | 6 +++--- examples/embassy/Cargo.toml | 14 +++++++------- examples/form/Cargo.toml | 6 +++--- examples/hello_world/Cargo.toml | 4 ++-- examples/hello_world_single_thread/Cargo.toml | 4 ++-- examples/huge_requests/Cargo.toml | 4 ++-- examples/layers/Cargo.toml | 4 ++-- examples/path_parameters/Cargo.toml | 6 +++--- examples/routing_fallback/Cargo.toml | 4 ++-- examples/server_sent_events/Cargo.toml | 4 ++-- examples/state/Cargo.toml | 6 +++--- examples/static_content/Cargo.toml | 6 +++--- examples/web_sockets/Cargo.toml | 4 ++-- 14 files changed, 38 insertions(+), 38 deletions(-) diff --git a/examples/chunked_response/Cargo.toml b/examples/chunked_response/Cargo.toml index 3ed64f9..280f422 100644 --- a/examples/chunked_response/Cargo.toml +++ b/examples/chunked_response/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.72" +anyhow = "1.0.86" picoserve = { path = "../..", features = ["tokio"] } -tokio = { version = "1.31.0", features = ["rt", "io-util", "net", "time", "macros", "sync"] } +tokio = { version = "1.38.1", features = ["rt", "io-util", "net", "time", "macros", "sync"] } diff --git a/examples/custom_extractor/Cargo.toml b/examples/custom_extractor/Cargo.toml index a698971..fbf6f13 100644 --- a/examples/custom_extractor/Cargo.toml +++ b/examples/custom_extractor/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.72" +anyhow = "1.0.86" picoserve = { path = "../..", features = ["tokio"] } -serde = { version = "1.0.183", features = ["derive"] } -tokio = { version = "1.31.0", features = ["rt", "io-util", "net", "time", "macros"] } +serde = { version = "1.0.204", features = ["derive"] } +tokio = { version = "1.38.1", features = ["rt", "io-util", "net", "time", "macros"] } diff --git a/examples/embassy/Cargo.toml b/examples/embassy/Cargo.toml index 208e0b4..f1acda3 100644 --- a/examples/embassy/Cargo.toml +++ b/examples/embassy/Cargo.toml @@ -18,13 +18,13 @@ embassy-executor = { version = "0.5.0", features = ["arch-cortex-m", "executor-t embassy-futures = "0.1.1" embassy-net = { version = "0.4.0", features = ["tcp", "proto-ipv4", "medium-ethernet"] } embassy-rp = { version = "0.1.0", features = ["critical-section-impl", "time-driver"] } -embassy-sync = "0.5.0" -embassy-time = "0.3.0" -embassy-usb-logger = "0.1.0" -embedded-io-async = "0.6.0" -log = { version = "0.4.20", default-features = false } +embassy-sync = "0.6.0" +embassy-time = "0.3.1" +embassy-usb-logger = "0.2.0" +embedded-io-async = "0.6.1" +log = { version = "0.4.22", default-features = false } panic-persist = { version = "0.3.0", features = ["utf8"] } picoserve = { path = "../..", features = ["embassy"] } -portable-atomic = { version = "1.6.0", features = ["critical-section"], default-features = false } +portable-atomic = { version = "1.7.0", features = ["critical-section"], default-features = false } rand = { version = "0.8.5", default-features = false } -static_cell = { version = "2.0.0", features = ["nightly"] } +static_cell = { version = "2.1.0", features = ["nightly"] } diff --git a/examples/form/Cargo.toml b/examples/form/Cargo.toml index 74be338..1a349cb 100644 --- a/examples/form/Cargo.toml +++ b/examples/form/Cargo.toml @@ -6,8 +6,8 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.72" +anyhow = "1.0.86" heapless = { version = "0.8.0", features = ["serde"] } picoserve = { path = "../..", features = ["tokio"] } -serde = { version = "1.0.183", features = ["derive"] } -tokio = { version = "1.31.0", features = ["rt", "io-util", "net", "time", "macros"] } +serde = { version = "1.0.204", features = ["derive"] } +tokio = { version = "1.38.1", features = ["rt", "io-util", "net", "time", "macros"] } diff --git a/examples/hello_world/Cargo.toml b/examples/hello_world/Cargo.toml index e42196f..beb30c6 100644 --- a/examples/hello_world/Cargo.toml +++ b/examples/hello_world/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.72" +anyhow = "1.0.86" picoserve = { path = "../..", features = ["tokio"] } -tokio = { version = "1.31.0", features = ["rt", "io-util", "net", "time", "macros"] } +tokio = { version = "1.38.1", features = ["rt", "io-util", "net", "time", "macros"] } diff --git a/examples/hello_world_single_thread/Cargo.toml b/examples/hello_world_single_thread/Cargo.toml index ed297cc..1c6e7df 100644 --- a/examples/hello_world_single_thread/Cargo.toml +++ b/examples/hello_world_single_thread/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.72" +anyhow = "1.0.86" picoserve = { path = "../..", features = ["tokio"] } -tokio = { version = "1.31.0", features = ["rt", "io-util", "net", "time", "macros"] } +tokio = { version = "1.38.1", features = ["rt", "io-util", "net", "time", "macros"] } diff --git a/examples/huge_requests/Cargo.toml b/examples/huge_requests/Cargo.toml index 39e1bfa..c5e149c 100644 --- a/examples/huge_requests/Cargo.toml +++ b/examples/huge_requests/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.72" +anyhow = "1.0.86" picoserve = { path = "../..", features = ["tokio"] } -tokio = { version = "1.31.0", features = ["rt", "io-util", "net", "time", "macros"] } +tokio = { version = "1.38.1", features = ["rt", "io-util", "net", "time", "macros"] } diff --git a/examples/layers/Cargo.toml b/examples/layers/Cargo.toml index 7721fa7..9ada111 100644 --- a/examples/layers/Cargo.toml +++ b/examples/layers/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.72" +anyhow = "1.0.86" picoserve = { path = "../..", features = ["tokio"] } -tokio = { version = "1.31.0", features = ["rt", "io-util", "net", "time", "macros"] } +tokio = { version = "1.38.1", features = ["rt", "io-util", "net", "time", "macros"] } diff --git a/examples/path_parameters/Cargo.toml b/examples/path_parameters/Cargo.toml index 569cb9f..26a50c0 100644 --- a/examples/path_parameters/Cargo.toml +++ b/examples/path_parameters/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.72" +anyhow = "1.0.86" picoserve = { path = "../..", features = ["tokio"] } -serde = { version = "1.0.183", features = ["derive"] } -tokio = { version = "1.31.0", features = ["rt", "io-util", "net", "time", "macros"] } +serde = { version = "1.0.204", features = ["derive"] } +tokio = { version = "1.38.1", features = ["rt", "io-util", "net", "time", "macros"] } diff --git a/examples/routing_fallback/Cargo.toml b/examples/routing_fallback/Cargo.toml index 8a113a9..6c92ef6 100644 --- a/examples/routing_fallback/Cargo.toml +++ b/examples/routing_fallback/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.72" +anyhow = "1.0.86" picoserve = { path = "../..", features = ["tokio"] } -tokio = { version = "1.31.0", features = ["rt", "io-util", "net", "time", "macros"] } +tokio = { version = "1.38.1", features = ["rt", "io-util", "net", "time", "macros"] } diff --git a/examples/server_sent_events/Cargo.toml b/examples/server_sent_events/Cargo.toml index bf0c499..7ccd9ac 100644 --- a/examples/server_sent_events/Cargo.toml +++ b/examples/server_sent_events/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.72" +anyhow = "1.0.86" picoserve = { path = "../..", features = ["tokio"] } -tokio = { version = "1.31.0", features = ["rt", "io-util", "net", "time", "macros", "sync"] } +tokio = { version = "1.38.1", features = ["rt", "io-util", "net", "time", "macros", "sync"] } diff --git a/examples/state/Cargo.toml b/examples/state/Cargo.toml index 3680437..b23f11b 100644 --- a/examples/state/Cargo.toml +++ b/examples/state/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.72" +anyhow = "1.0.86" picoserve = { path = "../..", features = ["tokio"] } -serde = { version = "1.0.183", features = ["derive"] } -tokio = { version = "1.31.0", features = ["rt", "io-util", "net", "time", "macros"] } +serde = { version = "1.0.204", features = ["derive"] } +tokio = { version = "1.38.1", features = ["rt", "io-util", "net", "time", "macros"] } diff --git a/examples/static_content/Cargo.toml b/examples/static_content/Cargo.toml index 879f12a..94df2cc 100644 --- a/examples/static_content/Cargo.toml +++ b/examples/static_content/Cargo.toml @@ -6,8 +6,8 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.72" +anyhow = "1.0.86" heapless = { version = "0.8.0", features = ["serde"] } picoserve = { path = "../..", features = ["tokio"] } -serde = { version = "1.0.183", features = ["derive"] } -tokio = { version = "1.31.0", features = ["rt", "io-util", "net", "time", "macros"] } +serde = { version = "1.0.204", features = ["derive"] } +tokio = { version = "1.38.1", features = ["rt", "io-util", "net", "time", "macros"] } diff --git a/examples/web_sockets/Cargo.toml b/examples/web_sockets/Cargo.toml index 58f0e08..8ba1df0 100644 --- a/examples/web_sockets/Cargo.toml +++ b/examples/web_sockets/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.72" +anyhow = "1.0.86" picoserve = { path = "../..", features = ["tokio"] } -tokio = { version = "1.31.0", features = ["rt", "io-util", "net", "time", "macros", "sync"] } +tokio = { version = "1.38.1", features = ["rt", "io-util", "net", "time", "macros", "sync"] }