Use OpenSSL 3

This commit is contained in:
2021-09-09 18:18:31 +01:00
parent 3142134360
commit fd321e02d8
5 changed files with 542 additions and 489 deletions

View File

@@ -9,15 +9,22 @@ path = "src/lib.rs"
crate-type = ["dylib"]
[dependencies]
deltachat = { git = "https://github.com/deltachat/deltachat-core-rust", tag="v1.51.0" }
lazy_static = "1.4.0"
log = "0.4.8"
purple-rs = "*"
openssl = "0.10.36"
openssl-src = "300.0.0"
deltachat = { git = "https://github.com/deltachat/deltachat-core-rust", tag = "1.60.0" }
lazy_static = "*"
log = "*"
purple-rs = { git = "https://github.com/Flared/purple-rs", branch = "master" }
## Keep in sync with deltachat-core-rust ##
# Keep in sync with deltachat-core-rust
[dependencies.async-std]
version = "~1.8"
version = "~1.9"
features = ["unstable"]
[profile.release]
lto = true
[patch.crates-io]
openssl-sys = { git = "https://github.com/lupine/rust-openssl", branch = "upgrade-openssl-3" }
openssl-src = { git = "https://github.com/lupine/openssl-src-rs", branch = "upgrade-openssl-3" }