Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
leotaku committed Jan 6, 2025
1 parent 6629484 commit 0befa57
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 16 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ path = "./src/lib.rs"

[dependencies]
bytes = "1.9.0"
http = "1.1.0"
http = "1.2.0"
http-body = "1.0.1"
pin-project-lite = "0.2.15"
tokio = { version = "1.41.1", features = ["sync", "rt"] }
tower = "0.5.1"
pin-project-lite = "0.2.16"
tokio = { version = "1.42.0", features = ["sync", "rt"] }
tower = "0.5.2"
4 changes: 2 additions & 2 deletions examples/axum-dev-only/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ version = "0.1.0"
edition = "2021"

[dependencies]
axum = "0.7.9"
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread"] }
axum = "0.8.1"
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
tower-livereload = { path = "../.." }
4 changes: 2 additions & 2 deletions examples/axum-file-watch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"

[dependencies]
axum = { version = "0.7.9", features = ["macros"] }
axum = { version = "0.8.1", features = ["macros"] }
notify = "7.0.0"
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.6.2", features = ["fs"] }
tower-livereload = { path = "../.." }
4 changes: 2 additions & 2 deletions examples/axum-htmx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"

[dependencies]
axum = "0.7.9"
axum = "0.8.1"
notify = "7.0.0"
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.6.2", features = ["fs"] }
tower-livereload = { path = "../.." }
8 changes: 4 additions & 4 deletions examples/livehttpd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ repository = "https://github.com/leotaku/tower-livereload"
version = "1.0.12-wip"

[dependencies]
axum = "0.7.9"
clap = { version = "4.5.21", features = ["derive"] }
axum = "0.8.1"
clap = { version = "4.5.23", features = ["derive"] }
notify = "7.0.0"
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread"] }
tower = "0.5.1"
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
tower = "0.5.2"
tower-http = { version = "0.6.2", features = ["fs", "set-header"] }
tower-livereload = { version = "0.9.6-wip", path = "../.." }
tracing-subscriber = "0.3.19"
5 changes: 3 additions & 2 deletions examples/playwright/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
axum = { version = "0.7.9", features = ["macros"] }
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread"] }
axum = { version = "0.8.1", features = ["macros"] }
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.6.2", features = ["fs"] }
tower-livereload = { path = "../.." }

0 comments on commit 0befa57

Please sign in to comment.