Skip to content

Commit

Permalink
Add feature to bundle openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
durch committed May 22, 2022
1 parent 2fbee81 commit 0fa5d51
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "smpl_jwt"
version = "0.7.0"
version = "0.7.1"
authors = ["Drazen Urch <github@drazenur.ch>"]
description = "Very simple JWT generation lib."
repository = "https://github.com/durch/rust-jwt"
Expand All @@ -18,8 +18,12 @@ path = "src/lib.rs"
serde = "^1.0"
serde_derive = "1.0"
serde_json = "1.0"
openssl = "0.10"
openssl = {version = "0.10", default-features = false}
time = "0.3.9"
log = "0.4"
base64 = "0.13"
simpl = "0.1"
simpl = "0.1"

[features]
default = []
vendored = ["openssl/vendored"]

0 comments on commit 0fa5d51

Please sign in to comment.