31 lines
778 B
TOML
31 lines
778 B
TOML
[package]
|
|
name = "purple-plugin-delta"
|
|
version = "0.1.0"
|
|
authors = ["Nick Thomas <delta@ur.gs>"]
|
|
|
|
[lib]
|
|
name = "purple_delta"
|
|
path = "src/lib.rs"
|
|
crate-type = ["dylib"]
|
|
|
|
[dependencies]
|
|
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 ##
|
|
|
|
[dependencies.async-std]
|
|
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" }
|