Cargo.toml 568 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "zeroidc"
  3. version = "0.1.0"
  4. edition = "2021"
  5. build = "build.rs"
  6. publish = false
  7. [lib]
  8. crate-type = ["staticlib","rlib"]
  9. [dependencies]
  10. openidconnect = { version = "2.5", default-features = false, features = ["reqwest", "native-tls", "accept-rfc3339-timestamps"] }
  11. base64 = "0.21"
  12. url = "2.3"
  13. reqwest = "0.11"
  14. jwt = {version = "0.16", git = "https://github.com/glimberg/rust-jwt"}
  15. serde = "1.0"
  16. time = { version = "0.3", features = ["formatting"] }
  17. bytes = "1.3"
  18. thiserror = "1"
  19. tokio = { version = ">=1.24" }
  20. [build-dependencies]
  21. cbindgen = "0.20"