-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
27 lines (23 loc) · 809 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "tower-sessions-sled-store"
version = "0.1.0"
edition = "2021"
description = "Sled session store. Not for direct use; see the `tower-sessions` crate for details."
license = "MIT"
readme = "readme.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.77"
rmp-serde = "1.1.2"
sled = "0.34.7"
tokio = { version = "1.36.0", features = ["rt"] }
tower-sessions = { version = "0.10.4", default-features = false }
[dev-dependencies]
axum = "0.7.2"
tokio = { version = "1.36.0", features = ["full"] }
tower-sessions = { version = "0.10.4", features = ["axum-core"] }
serde = { version = "1.0.197", features = ["derive"] }
time = "0.3.30"
[[example]]
name = "counter"
required-features = ["tower-sessions/axum-core"]