45 lines
1.7 KiB
TOML
45 lines
1.7 KiB
TOML
[workspace]
|
|
members = ["crates/*", "xtask"]
|
|
# Only compile / check / document the public crates by default
|
|
default-members = ["crates/*"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
rust-version = "1.70"
|
|
|
|
[workspace.dependencies]
|
|
as_variant = "1.2.0"
|
|
assert_matches2 = "0.1.0"
|
|
assign = "1.1.1"
|
|
base64 = "0.21.0"
|
|
criterion = "0.5.0"
|
|
http = "0.2.8"
|
|
js_int = "0.2.2"
|
|
maplit = "1.0.2"
|
|
ruma-appservice-api = { version = "0.9.0", path = "crates/ruma-appservice-api" }
|
|
ruma-common = { version = "0.12.1", path = "crates/ruma-common" }
|
|
ruma-client = { version = "0.12.0", path = "crates/ruma-client" }
|
|
ruma-client-api = { version = "0.17.4", path = "crates/ruma-client-api" }
|
|
ruma-events = { version = "0.27.11", path = "crates/ruma-events" }
|
|
ruma-federation-api = { version = "0.8.0", path = "crates/ruma-federation-api" }
|
|
ruma-html = { version = "0.1.0", path = "crates/ruma-html" }
|
|
ruma-identifiers-validation = { version = "0.9.3", path = "crates/ruma-identifiers-validation" }
|
|
ruma-identity-service-api = { version = "0.8.0", path = "crates/ruma-identity-service-api" }
|
|
ruma-macros = { version = "=0.12.0", path = "crates/ruma-macros" }
|
|
ruma-signatures = { version = "0.14.0", path = "crates/ruma-signatures" }
|
|
ruma-server-util = { version = "0.2.0", path = "crates/ruma-server-util" }
|
|
ruma-state-res = { version = "0.10.0", path = "crates/ruma-state-res" }
|
|
serde = { version = "1.0.164", features = ["derive"] }
|
|
serde_html_form = "0.2.0"
|
|
serde_json = "1.0.87"
|
|
thiserror = "1.0.37"
|
|
tracing = { version = "0.1.37", default-features = false, features = ["std"] }
|
|
|
|
[profile.dev]
|
|
# Speeds up test times by more than 10% in a simple test
|
|
# Set to 1 or 2 if you want to use a debugger in this workspace
|
|
debug = 0
|
|
|
|
[profile.dev.package]
|
|
# Also speeds up test times a little bit
|
|
quote = { opt-level = 2 }
|