mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-21 05:53:09 +00:00
29 lines
587 B
TOML
29 lines
587 B
TOML
[package]
|
|
name = "zeroidc"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
publish = false
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "rlib"]
|
|
|
|
[dependencies]
|
|
openidconnect = { version = "3.4", default-features = false, features = [
|
|
"reqwest",
|
|
"native-tls",
|
|
"accept-rfc3339-timestamps",
|
|
] }
|
|
base64 = "0.21"
|
|
url = "2.3"
|
|
reqwest = "0.11"
|
|
jwt = { version = "0.16", git = "https://github.com/glimberg/rust-jwt" }
|
|
serde = "1.0"
|
|
time = { version = "~0.3", features = ["formatting"] }
|
|
bytes = "1.3"
|
|
thiserror = "1"
|
|
tokio = { version = ">=1.24" }
|
|
|
|
[build-dependencies]
|
|
cbindgen = "0.20"
|