hippofish/packages/backend-rs/Cargo.toml

43 lines
1.1 KiB
TOML
Raw Normal View History

[package]
edition = "2021"
name = "backend-rs"
version = "0.0.0"
rust-version = "1.74"
2023-06-02 14:48:12 +02:00
[features]
2023-06-02 18:19:36 +02:00
default = []
napi = ["dep:napi", "dep:napi-derive"]
2023-05-25 08:34:48 +02:00
[lib]
2023-06-02 14:48:12 +02:00
crate-type = ["cdylib", "lib"]
[dependencies]
async-trait = "0.1.79"
2023-06-02 14:48:12 +02:00
cfg-if = "1.0.0"
2024-04-07 09:42:25 +02:00
chrono = "0.4.37"
cuid2 = "0.1.2"
jsonschema = "0.17.1"
once_cell = "1.19.0"
2024-04-11 19:55:27 +02:00
parse-display = "0.9.0"
2023-06-02 14:48:12 +02:00
rand = "0.8.5"
schemars = { version = "0.8.16", features = ["chrono"] }
2024-03-23 13:39:11 +01:00
sea-orm = { version = "0.12.15", features = ["sqlx-postgres", "runtime-tokio-rustls"] }
2024-03-15 17:18:16 +01:00
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
2024-03-15 17:18:16 +01:00
thiserror = "1.0.58"
2024-04-07 09:42:25 +02:00
tokio = { version = "1.37.0", features = ["full"] }
2023-06-02 14:48:12 +02:00
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
2024-04-11 19:55:27 +02:00
napi = { version = "2.16.2", default-features = false, features = ["napi9", "tokio_rt", "chrono_date", "serde-json"], optional = true }
napi-derive = { version = "2.16.2", optional = true }
2023-08-06 08:34:44 +02:00
basen = "0.1.0"
2023-06-02 14:48:12 +02:00
[dev-dependencies]
pretty_assertions = "1.4.0"
[build-dependencies]
2024-03-15 17:18:16 +01:00
napi-build = "2.1.2"
[profile.release]
lto = true