tetratto/crates/core/Cargo.toml

29 lines
771 B
TOML
Raw Normal View History

[package]
name = "tetratto-core"
2025-06-04 17:21:46 -04:00
version = "5.0.0"
edition = "2024"
[features]
2025-06-08 14:15:42 -04:00
postgres = ["oiseau/postgres"]
sqlite = ["oiseau/sqlite"]
redis = ["oiseau/redis"]
2025-03-23 21:19:16 -04:00
default = ["sqlite", "redis"]
[dependencies]
pathbufd = "0.1.4"
serde = { version = "1.0.219", features = ["derive"] }
toml = "0.8.22"
tetratto-shared = { path = "../shared" }
tetratto-l10n = { path = "../l10n" }
serde_json = "1.0.140"
2025-04-19 18:59:55 -04:00
totp-rs = { version = "5.7.0", features = ["qr", "gen_secret"] }
2025-05-30 21:22:53 -04:00
reqwest = { version = "0.12.18", features = ["json"] }
2025-05-17 11:28:58 -04:00
bitflags = "2.9.1"
2025-04-26 19:23:30 -04:00
async-recursion = "1.1.1"
md-5 = "0.10.6"
base16ct = { version = "0.2.0", features = ["alloc"] }
2025-04-27 23:11:37 -04:00
base64 = "0.22.1"
2025-05-05 23:12:46 -04:00
emojis = "0.6.4"
regex = "1.11.1"
2025-06-08 14:15:42 -04:00
oiseau = { version = "0.1.0", path = "../../../oiseau", default-features = false }