Files
purple-plugin-delta/Cargo.toml

32 lines
703 B
TOML
Raw Permalink Normal View History

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