-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 947 Bytes
/
Cargo.toml
File metadata and controls
42 lines (37 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[workspace]
resolver = "3"
members = [
"crux_cli",
"crux_core",
"crux_http",
"crux_kv",
"crux_macros",
"crux_platform",
"crux_time",
"doctest_support",
"examples_support/api_server",
]
[workspace.package]
authors = ["Red Badger Consulting Limited"]
edition = "2024"
rust-version = "1.90"
repository = "https://github.com/redbadger/crux/"
license = "Apache-2.0"
keywords = ["cross-platform-ui", "crux", "crux_core", "ffi", "wasm"]
[workspace.dependencies]
anyhow = "1.0"
facet = "=0.44"
facet_generate = "0.17"
facet-generate-attrs = "0.17"
# facet_generate = { path = "../facet-generate/crates/facet_generate" }
# facet-generate-attrs = { path = "../facet-generate/crates/facet-generate-attrs" }
serde = "1.0"
thiserror = "2.0"
uniffi = "=0.29.4"
uniffi_bindgen = "=0.29.4"
[workspace.lints.clippy]
pedantic = "warn"
[workspace.lints.rust]
unsafe_code = "forbid"
[profile.dev]
split-debuginfo = "unpacked"