2025-03-22 22:17:47 -04:00
|
|
|
[package]
|
2025-03-23 12:31:48 -04:00
|
|
|
name = "tetratto-core"
|
2025-06-04 17:21:46 -04:00
|
|
|
version = "5.0.0"
|
2025-03-22 22:17:47 -04:00
|
|
|
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"]
|
2025-03-22 22:17:47 -04:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
pathbufd = "0.1.4"
|
|
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
2025-04-29 16:53:34 -04:00
|
|
|
toml = "0.8.22"
|
2025-03-23 12:31:48 -04:00
|
|
|
tetratto-shared = { path = "../shared" }
|
|
|
|
tetratto-l10n = { path = "../l10n" }
|
2025-03-22 22:17:47 -04:00
|
|
|
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"
|
2025-05-19 19:31:12 -04:00
|
|
|
regex = "1.11.1"
|
2025-06-08 14:15:42 -04:00
|
|
|
oiseau = { version = "0.1.0", path = "../../../oiseau", default-features = false }
|