ZeroTierOne/zeroidc/Cargo.toml

25 lines
568 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.5", default-features = false, features = ["reqwest", "native-tls", "accept-rfc3339-timestamps"] }
base64 = "0.21"
url = "2.3"
2022-01-05 16:44:01 +00:00
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.3"
thiserror = "1"
2023-01-12 20:41:29 +00:00
tokio = { version = ">=1.24" }
2021-10-27 23:11:06 +00:00
[build-dependencies]
2022-01-05 16:44:01 +00:00
cbindgen = "0.20"