28 lines
745 B
TOML
28 lines
745 B
TOML
[package]
|
|
name = "tetratto-core"
|
|
version = "6.0.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
postgres = ["oiseau/postgres"]
|
|
sqlite = ["oiseau/sqlite"]
|
|
redis = ["oiseau/redis"]
|
|
default = ["sqlite", "redis"]
|
|
|
|
[dependencies]
|
|
pathbufd = "0.1.4"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
toml = "0.8.23"
|
|
tetratto-shared = { path = "../shared" }
|
|
tetratto-l10n = { path = "../l10n" }
|
|
serde_json = "1.0.140"
|
|
totp-rs = { version = "5.7.0", features = ["qr", "gen_secret"] }
|
|
reqwest = { version = "0.12.19", features = ["json"] }
|
|
bitflags = "2.9.1"
|
|
async-recursion = "1.1.1"
|
|
md-5 = "0.10.6"
|
|
base16ct = { version = "0.2.0", features = ["alloc"] }
|
|
base64 = "0.22.1"
|
|
emojis = "0.6.4"
|
|
regex = "1.11.1"
|
|
oiseau = { version = "0.1.2", default-features = false }
|