-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (34 loc) · 985 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
34
35
36
37
38
39
40
41
42
[workspace]
members = [
".",
"./example",
]
[package]
name = "tower-sessions-rorm-store"
version = "0.4.0"
edition = "2021"
description = "Session Store implementation for rorm"
authors = ["Niklas Pfister <[email protected]>"]
license = "MPL-2.0"
[package.metadata.docs.rs]
features = ["__ci"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# SessionStore interface
tower-sessions = { version = "~0.14" }
# required for SessionStore trait
async-trait = "~0.1"
# required for SessionStore trait
serde_json = { version = "~1" }
# Tracing
tracing = { version = "~0.1" }
# Error management
thiserror = { version = "~2" }
base64 = { version = "~0.22" }
# ORM
rorm = { version = "~0.6", default-features = false, features = ["time"] }
uuid = { version = "~1" }
[features]
# This feature is used to provide a way to compile the library,
# as rorm requires at least one driver to be active
__ci = ["rorm/default"]