2023-03-31 03:58:28 +02:00
|
|
|
[package]
|
|
|
|
edition = "2021"
|
2024-02-12 15:14:23 +01:00
|
|
|
name = "backend-rs"
|
2023-03-31 03:58:28 +02:00
|
|
|
version = "0.0.0"
|
2024-02-13 14:22:25 +01:00
|
|
|
rust-version = "1.74"
|
2023-03-31 03:58:28 +02:00
|
|
|
|
2023-06-02 14:48:12 +02:00
|
|
|
[features]
|
2023-06-02 18:19:36 +02:00
|
|
|
default = []
|
2023-07-10 07:39:33 +02:00
|
|
|
napi = ["dep:napi", "dep:napi-derive"]
|
2024-05-04 09:14:23 +02:00
|
|
|
ci = []
|
2023-05-25 08:34:48 +02:00
|
|
|
|
2023-03-31 03:58:28 +02:00
|
|
|
[lib]
|
2023-06-02 14:48:12 +02:00
|
|
|
crate-type = ["cdylib", "lib"]
|
2023-03-31 03:58:28 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2024-05-18 11:20:44 +02:00
|
|
|
macro-rs = { workspace = true }
|
2024-04-11 21:25:36 +02:00
|
|
|
|
2024-04-11 20:24:13 +02:00
|
|
|
napi = { workspace = true, optional = true, default-features = false, features = ["napi9", "tokio_rt", "chrono_date", "serde-json"] }
|
|
|
|
napi-derive = { workspace = true, optional = true }
|
2023-06-02 14:48:12 +02:00
|
|
|
|
2024-04-14 07:41:01 +02:00
|
|
|
argon2 = { workspace = true, features = ["std"] }
|
2024-05-18 01:14:38 +02:00
|
|
|
async-trait = { workspace = true }
|
2024-04-11 20:24:13 +02:00
|
|
|
basen = { workspace = true }
|
2024-05-18 01:14:38 +02:00
|
|
|
bb8 = { workspace = true }
|
2024-04-14 07:41:01 +02:00
|
|
|
bcrypt = { workspace = true }
|
2024-04-11 20:24:13 +02:00
|
|
|
chrono = { workspace = true }
|
|
|
|
cuid2 = { workspace = true }
|
2024-04-14 22:13:35 +02:00
|
|
|
emojis = { workspace = true }
|
2024-04-12 10:13:57 +02:00
|
|
|
idna = { workspace = true }
|
2024-04-25 12:06:16 +02:00
|
|
|
image = { workspace = true }
|
2024-05-05 07:53:45 +02:00
|
|
|
isahc = { workspace = true }
|
2024-04-25 12:06:16 +02:00
|
|
|
nom-exif = { workspace = true }
|
2024-04-11 20:24:13 +02:00
|
|
|
once_cell = { workspace = true }
|
2024-04-26 00:13:02 +02:00
|
|
|
openssl = { workspace = true, features = ["vendored"] }
|
2024-04-11 20:24:13 +02:00
|
|
|
rand = { workspace = true }
|
2024-05-18 01:14:38 +02:00
|
|
|
redis = { workspace = true, default-features = false, features = ["streams", "tokio-comp"] }
|
2024-04-11 22:35:18 +02:00
|
|
|
regex = { workspace = true }
|
2024-04-22 14:56:38 +02:00
|
|
|
rmp-serde = { workspace = true }
|
2024-04-11 20:24:13 +02:00
|
|
|
sea-orm = { workspace = true, features = ["sqlx-postgres", "runtime-tokio-rustls"] }
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
serde_json = { workspace = true }
|
2024-04-12 07:25:27 +02:00
|
|
|
serde_yaml = { workspace = true }
|
2024-04-19 23:54:06 +02:00
|
|
|
strum = { workspace = true, features = ["derive"] }
|
2024-05-15 09:26:46 +02:00
|
|
|
sysinfo = { workspace = true }
|
2024-04-11 20:24:13 +02:00
|
|
|
thiserror = { workspace = true }
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
2024-04-24 19:18:37 +02:00
|
|
|
tracing = { workspace = true }
|
|
|
|
tracing-subscriber = { workspace = true }
|
2024-04-12 10:13:57 +02:00
|
|
|
url = { workspace = true }
|
2024-04-12 07:38:44 +02:00
|
|
|
urlencoding = { workspace = true }
|
2024-05-16 00:19:58 +02:00
|
|
|
web-push = { workspace = true }
|
2023-06-02 14:48:12 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-04-11 20:24:13 +02:00
|
|
|
pretty_assertions = { workspace = true }
|
2024-05-18 00:36:52 +02:00
|
|
|
tokio-test = { workspace = true }
|
2023-03-31 03:58:28 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
2024-04-11 20:24:13 +02:00
|
|
|
napi-build = { workspace = true }
|