You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.7 KiB
TOML
86 lines
2.7 KiB
TOML
[workspace]
|
|
members = [
|
|
"benchmarks",
|
|
"bindings/matrix-sdk-crypto-ffi",
|
|
"bindings/matrix-sdk-crypto-js",
|
|
"bindings/matrix-sdk-crypto-nodejs",
|
|
"bindings/matrix-sdk-ffi",
|
|
"crates/*",
|
|
"testing/*",
|
|
"examples/*",
|
|
"labs/*",
|
|
"uniffi-bindgen",
|
|
"xtask",
|
|
]
|
|
# xtask, labs, testing and the bindings should only be built when invoked explicitly.
|
|
default-members = ["benchmarks", "crates/*"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
rust-version = "1.70"
|
|
|
|
[workspace.dependencies]
|
|
anyhow = "1.0.68"
|
|
assert_matches = "1.5.0"
|
|
async-stream = "0.3.3"
|
|
async-trait = "0.1.60"
|
|
base64 = "0.21.0"
|
|
byteorder = "1.4.3"
|
|
ctor = "0.2.0"
|
|
dashmap = "5.2.0"
|
|
eyeball = "0.7.0"
|
|
eyeball-im = "0.2.0"
|
|
eyeball-im-util = "0.2.1"
|
|
futures-core = "0.3.28"
|
|
futures-executor = "0.3.21"
|
|
futures-util = { version = "0.3.26", default-features = false, features = ["alloc"] }
|
|
http = "0.2.6"
|
|
ruma = { git = "https://github.com/ruma/ruma", rev = "e3282d8bfebc69d2e64815105ebe9dced130b94a", features = ["client-api-c", "compat-user-id"] }
|
|
ruma-common = { git = "https://github.com/ruma/ruma", rev = "e3282d8bfebc69d2e64815105ebe9dced130b94a" }
|
|
once_cell = "1.16.0"
|
|
serde = "1.0.151"
|
|
serde_html_form = "0.2.0"
|
|
serde_json = "1.0.91"
|
|
thiserror = "1.0.38"
|
|
tokio = { version = "1.24", default-features = false, features = ["sync"] }
|
|
tracing = { version = "0.1.36", default-features = false, features = ["std"] }
|
|
tracing-core = "0.1.30"
|
|
uniffi = { git = "https://github.com/mozilla/uniffi-rs", rev = "f243005ee79c1f3f39b63ba0d722f011f90fff46" }
|
|
uniffi_bindgen = { git = "https://github.com/mozilla/uniffi-rs", rev = "f243005ee79c1f3f39b63ba0d722f011f90fff46" }
|
|
vodozemac = "0.4.0"
|
|
zeroize = "1.3.0"
|
|
|
|
# Default release profile, select with `--release`
|
|
[profile.release]
|
|
lto = true
|
|
|
|
# Default development profile; default for most Cargo commands, otherwise
|
|
# selected with `--debug`
|
|
[profile.dev]
|
|
# Saves a lot of disk space. If symbols are needed, use the dbg profile.
|
|
debug = 0
|
|
|
|
[profile.dev.package]
|
|
# Optimize quote even in debug mode. Speeds up proc-macros enough to account
|
|
# for the extra time of optimizing it for a clean build of matrix-sdk-ffi.
|
|
quote = { opt-level = 2 }
|
|
sha2 = { opt-level = 2 }
|
|
|
|
# Custom profile with full debugging info, use `--profile dbg` to select
|
|
[profile.dbg]
|
|
inherits = "dev"
|
|
debug = 2
|
|
|
|
# Custom profile for use in (debug) builds of the binding crates, use
|
|
# `--profile reldbg` to select
|
|
[profile.reldbg]
|
|
inherits = "dev"
|
|
incremental = false
|
|
|
|
# Compile all non-workspace crate in the dependency tree with optimizations
|
|
[profile.reldbg.package."*"]
|
|
opt-level = 3
|
|
|
|
[patch.crates-io]
|
|
async-compat = { git = "https://github.com/jplatte/async-compat", rev = "b83b197622d8b5756d3594ce73b720896b07faae" }
|