diff options
author | Adam T. Carpenter <atc@53hor.net> | 2025-05-27 18:22:58 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2025-05-27 18:22:58 -0400 |
commit | 130bceda109ce9c000779373ea1fc8b27079c8e5 (patch) | |
tree | fa26de54c38eff020a178e82547931631dd72297 | |
parent | 3c911b0fe6659d954ddf740b542d00454676ece9 (diff) | |
download | carpentertutoring-130bceda109ce9c000779373ea1fc8b27079c8e5.tar.xz carpentertutoring-130bceda109ce9c000779373ea1fc8b27079c8e5.zip |
chore: bump carpentertutoring, elim unused tokio features
-rw-r--r-- | Cargo.lock | 61 | ||||
-rw-r--r-- | Cargo.toml | 7 |
2 files changed, 6 insertions, 62 deletions
@@ -198,7 +198,7 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" [[package]] name = "carpentertutoring" -version = "0.1.0" +version = "0.2.0" dependencies = [ "askama", "askama_axum", @@ -434,16 +434,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa" [[package]] -name = "lock_api" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" -dependencies = [ - "autocfg", - "scopeguard", -] - -[[package]] name = "log" version = "0.4.26" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -563,29 +553,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] -name = "parking_lot" -version = "0.12.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" -dependencies = [ - "lock_api", - "parking_lot_core", -] - -[[package]] -name = "parking_lot_core" -version = "0.9.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" -dependencies = [ - "cfg-if", - "libc", - "redox_syscall", - "smallvec", - "windows-targets", -] - -[[package]] name = "percent-encoding" version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -622,15 +589,6 @@ dependencies = [ ] [[package]] -name = "redox_syscall" -version = "0.5.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1" -dependencies = [ - "bitflags", -] - -[[package]] name = "regex" version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -693,12 +651,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" [[package]] -name = "scopeguard" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" - -[[package]] name = "serde" version = "1.0.219" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -762,15 +714,6 @@ dependencies = [ ] [[package]] -name = "signal-hook-registry" -version = "1.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" -dependencies = [ - "libc", -] - -[[package]] name = "slug" version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -833,9 +776,7 @@ dependencies = [ "bytes", "libc", "mio", - "parking_lot", "pin-project-lite", - "signal-hook-registry", "socket2", "tokio-macros", "windows-sys", @@ -1,6 +1,6 @@ [package] name = "carpentertutoring" -version = "0.1.0" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -13,7 +13,10 @@ askama = { version = "0.12", features = [ askama_axum = "0.4" axum = "0.7" chrono = { version = "0.4", default-features = false, features = ["now"] } -tokio = { version = "1.45", features = ["full"] } +tokio = { version = "1.45", default-features = false, features = [ + "rt-multi-thread", + "macros", +] } tower = "0.5" tower-http = { version = "0.5", features = ["fs", "trace", "normalize-path"] } tracing = "0.1" |