mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
A lot of work from @Hocuri and @Simon-Laux mostly. This exposes the API of the deltachat-provider-overview crate on the deltachat FFI API, allowing clients to use it to help users set up their accounts.
29 lines
811 B
TOML
29 lines
811 B
TOML
[package]
|
|
name = "deltachat_ffi"
|
|
version = "1.0.0-alpha.4"
|
|
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 }
|
|
deltachat-provider-overview = { git = "https://github.com/deltachat/provider-overview", rev = "366b41a7503973e4ffac3aa5173b419f2f03c211" }
|
|
libc = "0.2"
|
|
human-panic = "1.0.1"
|
|
num-traits = "0.2.6"
|
|
|
|
[features]
|
|
default = ["vendored", "nightly", "ringbuf"]
|
|
vendored = ["deltachat/vendored"]
|
|
nightly = ["deltachat/nightly"]
|
|
ringbuf = ["deltachat/ringbuf"]
|