39e60587d2
Signed-off-by: quexeky <git@quexeky.dev>
36 lines
798 B
TOML
36 lines
798 B
TOML
[package]
|
|
edition = "2024"
|
|
authors = ["Drop-OSS"]
|
|
name = "droplet-rs"
|
|
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 = "2.12.2", default-features = false, features = [
|
|
"napi4",
|
|
"async",
|
|
] }
|
|
hex = "0.4.3"
|
|
time-macros = "0.2.22"
|
|
time = "0.3.41"
|
|
webpki = "0.22.4"
|
|
ring = "0.17.14"
|
|
|
|
[dependencies.x509-parser]
|
|
version = "0.17.0"
|
|
features = ["verify"]
|
|
|
|
[dependencies.rcgen]
|
|
version = "0.13.2"
|
|
features = ["crypto", "pem", "x509-parser"]
|
|
|
|
[build-dependencies]
|
|
napi-build = "2.0.1"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = "symbols" |