-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 883 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
28
29
30
31
32
33
[package]
name = "axum-session-manager"
version = "0.1.1"
readme = "README.md"
repository = "https://github.com/nakaryo716/axum-session-manager"
license = "MIT"
description = """
Session manager crate for Rust web framework 'Axum'
"""
keywords = ["session", "axum"]
documentation = "https://docs.rs/axum-session-manager"
categories = ["web-programming", "asynchronous"]
edition = "2021"
[dependencies]
async-trait = "0.1.81"
axum-extra = { version = "0.9.3", features = ["cookie"] }
http = "1.1.0"
tower = "0.4.13"
tower-service = "0.3.2"
[[example]]
name = "auth-mid"
[dev-dependencies]
axum = "0.7.5"
tokio ={ version = "1.38.0", features = ["full"]}
axum-session-manager ={ path = "../axum-session-manager"}
thiserror = "1.0.63"
async-trait = "0.1.81"
uuid ={ version = "1.10.0", features = ["v4"]}
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"