Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
This raises our MSRV from 1.63.0 to 1.70.0 because of tokio and tower
raising their MSRV.
  • Loading branch information
leotaku committed Sep 17, 2024
1 parent 24c9732 commit 4c32ee9
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ license = "MIT OR Apache-2.0"
name = "tower-livereload"
readme = "README.md"
repository = "https://github.com/leotaku/tower-livereload"
rust-version = "1.63.0"
rust-version = "1.70.0"
version = "0.9.4-wip"

[lib]
doctest = false
path = "./src/lib.rs"

[dependencies]
bytes = "1.7.0"
bytes = "1.7.1"
http = "1.1.0"
http-body = "1.0.1"
pin-project-lite = "0.2.14"
tokio = { version = "1.38.1", features = ["sync", "rt"] }
tower = "0.4.13"
tokio = { version = "1.40.0", features = ["sync", "rt"] }
tower = "0.5.1"
2 changes: 1 addition & 1 deletion examples/axum-dev-only/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ edition = "2021"

[dependencies]
axum = "0.7.5"
tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
tower-livereload = { path = "../.." }
2 changes: 1 addition & 1 deletion examples/axum-file-watch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
[dependencies]
axum = { version = "0.7.5", features = ["macros"] }
notify = "6.1.1"
tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.5.2", features = ["fs"] }
tower-livereload = { path = "../.." }
2 changes: 1 addition & 1 deletion examples/axum-htmx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
[dependencies]
axum = "0.7.5"
notify = "6.1.1"
tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.5.2", features = ["fs"] }
tower-livereload = { path = "../.." }
6 changes: 3 additions & 3 deletions examples/livehttpd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ version = "1.0.10-wip"

[dependencies]
axum = "0.7.5"
clap = { version = "4.5.13", features = ["derive"] }
clap = { version = "4.5.17", features = ["derive"] }
notify = "6.1.1"
tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread"] }
tower = "0.4.13"
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
tower = "0.5.1"
tower-http = { version = "0.5.2", features = ["fs", "set-header"] }
tower-livereload = { version = "0.9.4-wip", path = "../.." }
tracing-subscriber = "0.3.18"
2 changes: 1 addition & 1 deletion examples/playwright/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ edition = "2021"

[dependencies]
axum = { version = "0.7.5", features = ["macros"] }
tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
tower-livereload = { path = "../.." }

0 comments on commit 4c32ee9

Please sign in to comment.