mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
This way we can better distinguish tagged from untagged core releases, also in logs etc. We might, from time to time, increase the alpha.N "N" number if we are entering testing etc.
33 lines
710 B
TOML
33 lines
710 B
TOML
[package]
|
|
name = "deltachat_ffi"
|
|
version = "1.50.0-alpha.0"
|
|
description = "Deltachat FFI"
|
|
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
|
|
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 = { path = "../", default-features = false }
|
|
libc = "0.2"
|
|
human-panic = "1.0.1"
|
|
num-traits = "0.2.6"
|
|
serde_json = "1.0"
|
|
async-std = "1.6.0"
|
|
anyhow = "1.0.28"
|
|
thiserror = "1.0.14"
|
|
rand = "0.7.3"
|
|
|
|
[features]
|
|
default = ["vendored"]
|
|
vendored = ["deltachat/vendored"]
|
|
nightly = ["deltachat/nightly"]
|
|
|