Skip to content

Commit

Permalink
Cargo.toml: add openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
davidor committed May 13, 2021
1 parent 72a19bb commit 130be91
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
19 changes: 15 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion limitador/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2018"
[features]
default = ["redis_storage"]
redis_storage = ["redis", "r2d2", "tokio"]
infinispan_storage = ["infinispan", "reqwest"]
infinispan_storage = ["infinispan", "reqwest", "openssl"]

[dependencies]
ttl_cache = "0.5"
Expand All @@ -33,6 +33,9 @@ tokio = { version = "0.2", optional = true, features = ["rt-core", "macros", "ti
infinispan = { version = "0.1", optional = true }
reqwest = { version = "0.10", optional = true }

# reqwest dependency. Needed here to avoid problems when compiling
openssl = { version = "0.10.34", optional = true, features = ["vendored"] }

[dev-dependencies]
serial_test = "0.5"
criterion = "0.3"
Expand Down

0 comments on commit 130be91

Please sign in to comment.