mirror of
https://github.com/chatmail/core.git
synced 2026-04-19 14:36:29 +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
53 lines
990 B
TOML
53 lines
990 B
TOML
[package]
|
|
name = "deltachat"
|
|
version = "0.1.0"
|
|
authors = ["dignifiedquire <dignifiedquire@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[build-dependencies]
|
|
cc = "1.0.35"
|
|
pkg-config = "0.3"
|
|
|
|
[dependencies]
|
|
libc = "0.2.51"
|
|
pgp = "0.2"
|
|
hex = "0.3.2"
|
|
sha2 = "0.8.0"
|
|
rand = "0.6.5"
|
|
smallvec = "0.6.9"
|
|
libsqlite3-sys = { version = "0.14.0", features = ["bundled", "min_sqlite_version_3_7_16"] }
|
|
reqwest = "0.9.15"
|
|
num-derive = "0.2.5"
|
|
num-traits = "0.2.6"
|
|
native-tls = "0.2.3"
|
|
lettre = "0.9.0"
|
|
imap = "1.0.1"
|
|
mmime = { git = "https://github.com/dignifiedquire/mmime" }
|
|
base64 = "0.10"
|
|
charset = "0.1"
|
|
percent-encoding = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
chrono = "0.4.6"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.0"
|
|
|
|
[workspace]
|
|
members = [
|
|
"deltachat-ffi"
|
|
]
|
|
|
|
[[example]]
|
|
name = "simple"
|
|
|
|
[[example]]
|
|
name = "repl"
|
|
path = "examples/repl/main.rs"
|
|
|
|
|
|
[features]
|
|
default = ["nightly"]
|
|
vendored = ["native-tls/vendored", "reqwest/default-tls-vendored"]
|
|
nightly = ["pgp/nightly"]
|