mirror of
https://github.com/chatmail/core.git
synced 2026-04-18 05:56:31 +03:00
27 lines
651 B
TOML
27 lines
651 B
TOML
[package]
|
|
name = "deltachat_ffi"
|
|
version = "1.0.0-alpha.1"
|
|
description = "Deltachat FFI"
|
|
authors = ["dignifiedquire <dignifiedquire@gmail.com>"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
keywords = ["deltachat", "chat", "openpgp", "email", "encryption"]
|
|
categories = ["cryptography", "std", "email"]
|
|
|
|
[lib]
|
|
name = "deltachat"
|
|
crate-type = ["cdylib", "staticlib"]
|
|
|
|
[dependencies]
|
|
deltachat = { path = "../", default-features = false }
|
|
libc = "0.2"
|
|
human-panic = "1.0.1"
|
|
|
|
[features]
|
|
default = ["vendored", "nightly", "ringbuf"]
|
|
vendored = ["deltachat/vendored"]
|
|
nightly = ["deltachat/nightly"]
|
|
ringbuf = ["deltachat/ringbuf"]
|