mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-22 22:32:22 +00:00
32 lines
709 B
TOML
32 lines
709 B
TOML
[package]
|
|
name = "jwt"
|
|
version = "0.16.0"
|
|
authors = ["Michael Yang <mikkyangg@gmail.com>"]
|
|
description = "JSON Web Token library"
|
|
documentation = "https://docs.rs/jwt"
|
|
homepage = "http://github.com/mikkyang/rust-jwt"
|
|
repository = "http://github.com/mikkyang/rust-jwt"
|
|
readme = "README.md"
|
|
keywords = ["JWT", "token", "web"]
|
|
license = "MIT"
|
|
edition = "2018"
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["openssl"]
|
|
|
|
[dependencies]
|
|
base64 = "0.13"
|
|
crypto-common = "0.1"
|
|
digest = "0.10"
|
|
hmac = { version = "0.12", features = ["reset"] }
|
|
sha2 = "0.10"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
[dependencies.openssl]
|
|
version = "0.10"
|
|
optional = true
|
|
|
|
[dev-dependencies]
|
|
doc-comment = "0.3"
|