ZeroTierOne/zeroidc/Cargo.toml

27 lines
549 B
TOML
Raw Normal View History

2021-10-27 23:11:06 +00:00
[package]
name = "zeroidc"
version = "0.1.0"
edition = "2018"
build = "build.rs"
2021-11-18 18:32:25 +00:00
publish = false
2021-10-27 23:11:06 +00:00
[lib]
crate-type = ["staticlib","rlib"]
2021-10-27 23:11:06 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
openidconnect = { version = "2.2", default-features = false, features = ["reqwest", "native-tls"] }
2022-01-05 16:44:01 +00:00
base64 = "0.13"
url = "2.2"
reqwest = "0.11"
jwt = "0.16"
2022-01-05 16:44:01 +00:00
serde = "1.0"
time = { version = "0.3", features = ["formatting"] }
bytes = "1.1"
thiserror = "1"
2021-10-27 23:11:06 +00:00
[build-dependencies]
2022-01-05 16:44:01 +00:00
cbindgen = "0.20"