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"]
|
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-04-11 21:25:36 +02:00
|
|
|
macro_rs = { workspace = true }
|
|
|
|
|
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-04-11 20:24:13 +02:00
|
|
|
async-trait = { workspace = true }
|
|
|
|
basen = { workspace = true }
|
2024-04-14 07:41:01 +02:00
|
|
|
bcrypt = { workspace = true }
|
2024-04-11 20:24:13 +02:00
|
|
|
cfg-if = { workspace = true }
|
|
|
|
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-11 20:24:13 +02:00
|
|
|
jsonschema = { workspace = true }
|
|
|
|
once_cell = { workspace = true }
|
|
|
|
parse-display = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
2024-04-19 19:17:03 +02:00
|
|
|
redis = { workspace = true }
|
2024-04-11 22:35:18 +02:00
|
|
|
regex = { workspace = true }
|
2024-04-11 20:24:13 +02:00
|
|
|
schemars = { workspace = true, features = ["chrono"] }
|
|
|
|
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-11 20:24:13 +02:00
|
|
|
thiserror = { workspace = true }
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
2024-04-12 10:13:57 +02:00
|
|
|
url = { workspace = true }
|
2024-04-12 07:38:44 +02:00
|
|
|
urlencoding = { workspace = true }
|
2023-06-02 14:48:12 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-04-11 20:24:13 +02:00
|
|
|
pretty_assertions = { workspace = true }
|
2023-03-31 03:58:28 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
2024-04-11 20:24:13 +02:00
|
|
|
napi-build = { workspace = true }
|