Skip to content

Commit

Permalink
Fix for the build of Android SDK target 21
Browse files Browse the repository at this point in the history
The latest openssl 0.10.30 pakcage requires a minimal SDK target 23
  • Loading branch information
madeye committed Jul 16, 2020
1 parent f104618 commit b0569e5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
24 changes: 13 additions & 11 deletions Cargo.lock

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

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ rand = "0.7"
clap = { version = "2.33", features = ["suggestions", "wrap_help"] }
env_logger = { version = "0.7", default-features = false, features = ["termcolor", "atty", "regex"] }
chrono = "0.4"
openssl = { version = "0.10", optional = true }
openssl = { version = "=0.10.29", optional = true }
openssl-sys = { version = "=0.9.56", optional = true }
openssl-src = { version = "=111.9.0+1.1.1g", optional = true }
libc = "^0.2.68"
tokio = { version = "^0.2.11", features = ["macros", "net", "signal", "time", "sync", "process", "rt-threaded", "rt-core", "stream", "io-util", "parking_lot"] }
tokio-native-tls = { version = "0.1", optional = true }
Expand Down

0 comments on commit b0569e5

Please sign in to comment.