Files
purple-plugin-delta/Cargo.toml
Nick Thomas 039807bb32 Drop openssl fork, move to rust 2021 edition
The openssl-sys crate now natively supports openssl 3 on the master
branch, although there doesn't seem to be a release containing it yet.
2021-10-30 16:13:38 +01:00

31 lines
678 B
TOML

[package]
name = "purple-plugin-delta"
version = "0.1.0"
authors = ["Nick Thomas <delta@ur.gs>"]
rust-version = "1.56"
edition = "2021"
[lib]
name = "purple_delta"
path = "src/lib.rs"
crate-type = ["dylib"]
[dependencies]
openssl = "*"
deltachat = { git = "https://github.com/deltachat/deltachat-core-rust", tag = "1.61.0" }
lazy_static = "*"
log = "*"
purple-rs = { git = "https://github.com/Flared/purple-rs", branch = "master" }
## Keep in sync with deltachat-core-rust ##
[dependencies.async-std]
version = "1"
features = ["unstable"]
[profile.release]
lto = true
[patch.crates-io]
openssl-sys = { git = "https://github.com/sfackler/rust-openssl", branch = "master" }