-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 1.08 KB
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
28
29
30
31
32
33
[package]
name = "pavex_session"
version.workspace = true
description = "HTTP sessions support for Pavex"
keywords = ["pavex", "sessions", "HTTP", "auth"]
edition.workspace = true
repository.workspace = true
license.workspace = true
[lints.rust]
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(pavex_ide_hint)'] }
[dependencies]
pavex = { version = "0.2.7", path = "../pavex", default-features = false, features = [
"cookie",
] }
pavex_tracing = { version = "0.2.7", path = "../pavex_tracing" }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
anyhow = { workspace = true }
uuid = { workspace = true, features = ["v4", "serde"] }
tracing = { workspace = true }
tokio = { workspace = true, features = ["rt"] }
async-trait = { workspace = true }
thiserror = { workspace = true }
[dev-dependencies]
static_assertions = { workspace = true }
pavex_session_memory_store = { path = "../pavex_session_memory_store" }
googletest = "0.14.2"
itertools = { workspace = true }
insta = { workspace = true }
tokio = { workspace = true, features = ["rt", "macros"] }