mirror of
https://github.com/chatmail/core.git
synced 2026-04-29 11:26:29 +03:00
Prepare for android builds (#88)
* 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
This commit is contained in:
committed by
Lars-Magnus Skog
parent
2a5d0c64d5
commit
0d51c7dd2e
10
Cargo.toml
10
Cargo.toml
@@ -10,12 +10,12 @@ pkg-config = "0.3"
|
||||
|
||||
[dependencies]
|
||||
libc = "0.2.51"
|
||||
pgp = "0.2.0"
|
||||
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"] }
|
||||
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"
|
||||
@@ -28,6 +28,7 @@ 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"
|
||||
@@ -46,5 +47,6 @@ path = "examples/repl/main.rs"
|
||||
|
||||
|
||||
[features]
|
||||
default = []
|
||||
vendored = ["native-tls/vendored"]
|
||||
default = ["nightly"]
|
||||
vendored = ["native-tls/vendored", "reqwest/default-tls-vendored"]
|
||||
nightly = ["pgp/nightly"]
|
||||
|
||||
Reference in New Issue
Block a user