Files
purple-plugin-delta/Cargo.toml
Nick Thomas f57cdf3cdc Initialize Delta accounts on plugin load
We don't yet configure any of the accounts, but we're set up to manage
several accounts simultaneously in the same plugin instance, using
delta's built-in support for that.
2021-10-31 01:19:36 +01:00

32 lines
703 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]
deltachat = { git = "https://github.com/deltachat/deltachat-core-rust", tag = "1.61.0" }
lazy_static = "*"
log = "*"
openssl = "*"
os_pipe = "*"
purple-rs = { git = "https://github.com/Flared/purple-rs", branch = "master" }
serde = "*"
## 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" }