2021-04-10 00:40:10 +01:00
|
|
|
[package]
|
|
|
|
name = "purple-plugin-delta"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Nick Thomas <delta@ur.gs>"]
|
2021-10-30 16:13:38 +01:00
|
|
|
rust-version = "1.56"
|
|
|
|
edition = "2021"
|
2021-04-10 00:40:10 +01:00
|
|
|
|
|
|
|
[lib]
|
2021-04-10 14:29:36 +01:00
|
|
|
name = "purple_delta"
|
|
|
|
path = "src/lib.rs"
|
2021-04-10 00:40:10 +01:00
|
|
|
crate-type = ["dylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2021-10-30 16:13:38 +01:00
|
|
|
deltachat = { git = "https://github.com/deltachat/deltachat-core-rust", tag = "1.61.0" }
|
2021-09-09 18:18:31 +01:00
|
|
|
lazy_static = "*"
|
|
|
|
log = "*"
|
2021-10-31 01:19:36 +01:00
|
|
|
openssl = "*"
|
|
|
|
os_pipe = "*"
|
2021-09-09 18:18:31 +01:00
|
|
|
purple-rs = { git = "https://github.com/Flared/purple-rs", branch = "master" }
|
2021-10-31 01:19:36 +01:00
|
|
|
serde = "*"
|
2021-09-09 18:18:31 +01:00
|
|
|
|
|
|
|
## Keep in sync with deltachat-core-rust ##
|
2021-04-10 14:29:36 +01:00
|
|
|
[dependencies.async-std]
|
2021-10-30 16:13:38 +01:00
|
|
|
version = "1"
|
2021-04-10 14:29:36 +01:00
|
|
|
features = ["unstable"]
|
2021-04-10 00:40:10 +01:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
2021-09-09 18:18:31 +01:00
|
|
|
|
|
|
|
[patch.crates-io]
|
2021-10-30 16:13:38 +01:00
|
|
|
openssl-sys = { git = "https://github.com/sfackler/rust-openssl", branch = "master" }
|