2023-03-29 15:18:33 +00:00
|
|
|
[package]
|
|
|
|
name = "dnapi-rs"
|
2023-07-26 01:05:02 +00:00
|
|
|
version = "0.1.14"
|
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]
|
2023-07-26 01:05:02 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_with = "3"
|
|
|
|
base64-serde = "0.7"
|
|
|
|
log = "0.4"
|
|
|
|
reqwest = { version = "0.11", features = ["blocking", "json", "rustls-tls"], default-features = false }
|
|
|
|
url = "2.3"
|
|
|
|
base64 = "0.21"
|
|
|
|
serde_json = "1"
|
2023-04-07 00:19:23 +00:00
|
|
|
trifid-pki = { version = "0.1", path = "../trifid-pki", features = ["serde_derive"] }
|
2023-07-26 01:05:02 +00:00
|
|
|
rand = "0.8"
|
|
|
|
chrono = "0.4"
|