Skip to content

Commit

Permalink
Updated example dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sammhicks committed Jul 22, 2024
1 parent 0db2c14 commit 522c711
Show file tree
Hide file tree
Showing 14 changed files with 38 additions and 38 deletions.
4 changes: 2 additions & 2 deletions examples/chunked_response/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
6 changes: 3 additions & 3 deletions examples/custom_extractor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
14 changes: 7 additions & 7 deletions examples/embassy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
6 changes: 3 additions & 3 deletions examples/form/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
4 changes: 2 additions & 2 deletions examples/hello_world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
4 changes: 2 additions & 2 deletions examples/hello_world_single_thread/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
4 changes: 2 additions & 2 deletions examples/huge_requests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
4 changes: 2 additions & 2 deletions examples/layers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
6 changes: 3 additions & 3 deletions examples/path_parameters/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
4 changes: 2 additions & 2 deletions examples/routing_fallback/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
4 changes: 2 additions & 2 deletions examples/server_sent_events/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
6 changes: 3 additions & 3 deletions examples/state/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
6 changes: 3 additions & 3 deletions examples/static_content/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
4 changes: 2 additions & 2 deletions examples/web_sockets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

0 comments on commit 522c711

Please sign in to comment.