mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
35 lines
985 B
TOML
35 lines
985 B
TOML
[package]
|
|
name = "deltachat_ffi"
|
|
version = "1.148.7"
|
|
description = "Deltachat FFI"
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
license = "MPL-2.0"
|
|
|
|
keywords = ["deltachat", "chat", "openpgp", "email", "encryption"]
|
|
categories = ["cryptography", "std", "email"]
|
|
|
|
[lib]
|
|
name = "deltachat"
|
|
crate-type = ["cdylib", "staticlib"]
|
|
|
|
[dependencies]
|
|
deltachat = { workspace = true, default-features = false }
|
|
deltachat-jsonrpc = { workspace = true, optional = true }
|
|
libc = { workspace = true }
|
|
human-panic = { version = "2", default-features = false }
|
|
num-traits = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread"] }
|
|
anyhow = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
rand = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
yerpc = { workspace = true, features = ["anyhow_expose"] }
|
|
|
|
[features]
|
|
default = ["vendored"]
|
|
vendored = ["deltachat/vendored", "deltachat-jsonrpc/vendored"]
|
|
jsonrpc = ["dep:deltachat-jsonrpc"]
|
|
|