29 lines
787 B
TOML
29 lines
787 B
TOML
[package]
|
|
name = "dnapi-rs"
|
|
version = "0.1.1"
|
|
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"
|
|
trifid-pki = { version = "0.1.6", path = "../trifid-pki" }
|
|
rand = "0.8.5"
|
|
chrono = "0.4.24"
|
|
|
|
[features]
|
|
default = ["blocking"]
|
|
blocking = ["reqwest/blocking"]
|
|
async = [] |