mirror of
https://github.com/chatmail/core.git
synced 2026-04-24 17:06:28 +03:00
* upgrade ci * fixup * update ci script * Update run.sh * refactor(time): drop libc time functions * fix(ffi): use i64 instead off time_t * fix(ci): install croos * fix: remove unused dc_check_password * fix(ffi): enable ssl vendoring by default * chore: remove unused import * fix(deps): add vendored flag for reqwest * chore(ci): use cross fork * fix: handle invalid server configurations Closes #90 * Disable android from circle ci for now
22 lines
484 B
TOML
22 lines
484 B
TOML
[package]
|
|
name = "deltachat_ffi"
|
|
version = "0.1.0"
|
|
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 = "../" }
|
|
libc = "0.2"
|
|
|
|
[features]
|
|
default = ["deltachat/vendored"] |