ZeroTierOne/zeroidc/Cargo.toml

24 lines
537 B
TOML
Raw Normal View History

2021-10-27 23:11:06 +00:00
[package]
name = "zeroidc"
version = "0.1.0"
2022-06-06 23:33:35 +00:00
edition = "2021"
2021-10-27 23:11:06 +00:00
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
[dependencies]
openidconnect = { version = "2.2", default-features = false, features = ["reqwest", "native-tls", "accept-rfc3339-timestamps"] }
2022-01-05 16:44:01 +00:00
base64 = "0.13"
url = "2.2"
reqwest = "0.11"
jwt = {version = "0.16", git = "https://github.com/glimberg/rust-jwt"}
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"