diff --git a/Cargo.toml b/Cargo.toml index c74cd2e..f507178 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ 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] @@ -17,9 +17,9 @@ 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" diff --git a/examples/axum-dev-only/Cargo.toml b/examples/axum-dev-only/Cargo.toml index 1567d02..3e2d1dd 100644 --- a/examples/axum-dev-only/Cargo.toml +++ b/examples/axum-dev-only/Cargo.toml @@ -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 = "../.." } diff --git a/examples/axum-file-watch/Cargo.toml b/examples/axum-file-watch/Cargo.toml index 8e5292e..04d141b 100644 --- a/examples/axum-file-watch/Cargo.toml +++ b/examples/axum-file-watch/Cargo.toml @@ -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 = "../.." } diff --git a/examples/axum-htmx/Cargo.toml b/examples/axum-htmx/Cargo.toml index 5ac9bbf..838296b 100644 --- a/examples/axum-htmx/Cargo.toml +++ b/examples/axum-htmx/Cargo.toml @@ -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 = "../.." } diff --git a/examples/livehttpd/Cargo.toml b/examples/livehttpd/Cargo.toml index 26d3dd3..e929636 100644 --- a/examples/livehttpd/Cargo.toml +++ b/examples/livehttpd/Cargo.toml @@ -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" diff --git a/examples/playwright/Cargo.toml b/examples/playwright/Cargo.toml index 4c8e83d..58f87f4 100644 --- a/examples/playwright/Cargo.toml +++ b/examples/playwright/Cargo.toml @@ -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 = "../.." }