trifid/dnapi-rs/Cargo.toml

25 lines
800 B
TOML
Raw Normal View History

2023-03-29 15:18:33 +00:00
[package]
name = "dnapi-rs"
2023-03-31 00:05:06 +00:00
version = "0.1.8"
2023-03-29 15:18:33 +00:00
edition = "2021"
description = "A rust client for the Defined Networking API"
license = "AGPL-3.0-or-later"
documentation = "https://docs.rs/dnapi-rs"
homepage = "https://git.e3t.cc/~core/trifid"
repository = "https://git.e3t.cc/~core/trifid"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.159", features = ["derive"] }
base64-serde = "0.7.0"
log = "0.4.17"
reqwest = { version = "0.11.16", features = ["blocking", "json"] }
url = "2.3.1"
base64 = "0.21.0"
serde_json = "1.0.95"
2023-03-29 22:26:04 +00:00
trifid-pki = { version = "0.1.6", path = "../trifid-pki", features = ["serde_derive"] }
2023-03-29 18:31:07 +00:00
rand = "0.8.5"
2023-03-31 00:05:06 +00:00
chrono = "0.4.24"
openssl-sys = { version = "0.9.83", features = ["vendored"] }