oswilno/crates/oswilno-session/Cargo.toml

25 lines
814 B
TOML
Raw Normal View History

2023-08-01 16:29:03 +02:00
[package]
name = "oswilno-session"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-08-01 22:06:04 +02:00
actix-http = "3.3.1"
2023-08-01 16:29:03 +02:00
actix-jwt-authc = { version = "0.2.0", features = ["tracing", "session"] }
actix-web = "4.3.1"
dashmap = "5.5.0"
futures = { version = "0.3.28", features = ["thread-pool"] }
jsonwebtoken = "8.3.0"
rand = "0.8.5"
2023-08-01 22:06:04 +02:00
ring = "0.16.20"
2023-08-01 16:29:03 +02:00
serde = { version = "1.0.180", features = ["derive"] }
time = "0.3.24"
tokio = { version = "1.29.1", features = ["full"] }
uuid = { version = "1.4.1", features = ["v4"] }
2023-08-01 22:38:56 +02:00
sea-orm = { version = "0.11", features = ["postgres-array", "runtime-actix-rustls", "sqlx-postgres", "macros", "sqlx"] }
2023-08-01 22:06:04 +02:00
oswilno-contract = { path = "../oswilno-contract" }
2023-08-01 22:38:56 +02:00
tracing = "0.1.37"
argon2 = "0.5.1"