mirror of
https://github.com/Drop-OSS/droplet.git
synced 2025-11-09 20:12:18 +10:00
61 lines
1.4 KiB
TOML
61 lines
1.4 KiB
TOML
[package]
|
|
edition = "2021"
|
|
name = "droplet"
|
|
version = "0.7.0"
|
|
license = "AGPL-3.0-only"
|
|
description = "Droplet is a `napi.rs` Rust/Node.js package full of high-performance and low-level utils for Drop"
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
|
|
napi = { version = "3.0.0-beta.11", default-features = false, features = [
|
|
"napi4",
|
|
"async",
|
|
"web_stream",
|
|
] }
|
|
napi-derive = "3.0.0-alpha.11"
|
|
hex = "0.4.3"
|
|
serde_json = "1.0.128"
|
|
md5 = "0.7.0"
|
|
time-macros = "0.2.22"
|
|
time = "0.3.41"
|
|
webpki = "0.22.4"
|
|
ring = "0.17.14"
|
|
tokio = { version = "1.45.1", features = ["fs", "io-util"] }
|
|
tokio-util = { version = "0.7.15", features = ["codec"] }
|
|
rawzip = "0.2.0"
|
|
|
|
[package.metadata.patch]
|
|
crates = ["rawzip"]
|
|
|
|
[patch.crates-io]
|
|
rawzip = { path="./target/patch/rawzip-0.2.0" }
|
|
|
|
[dependencies.x509-parser]
|
|
version = "0.17.0"
|
|
features = ["verify"]
|
|
|
|
[dependencies.rcgen]
|
|
version = "0.13.2"
|
|
features = ["crypto", "pem", "x509-parser"]
|
|
|
|
[dependencies.serde]
|
|
version = "1.0.210"
|
|
features = ["serde_derive"]
|
|
|
|
[dependencies.uuid]
|
|
version = "1.10.0"
|
|
features = [
|
|
"v4", # Lets you generate random UUIDs
|
|
"fast-rng", # Use a faster (but still sufficiently random) RNG
|
|
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
|
|
]
|
|
|
|
[build-dependencies]
|
|
napi-build = "2.0.1"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = "symbols"
|