-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 879 Bytes
/
Cargo.toml
File metadata and controls
40 lines (34 loc) · 879 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
[package]
name = "rxtui-workspace"
version = "0.1.8"
edition = "2021"
publish = false
[features]
default = ["effects", "components"]
effects = ["rxtui/effects"]
components = ["rxtui/components"]
[workspace]
resolver = "2"
members = [
"rxtui",
"rxtui-macros",
]
[workspace.package]
version = "0.1.8"
edition = "2024"
authors = ["Microsandbox Team"]
license = "Apache-2.0"
repository = "https://github.com/microsandbox/rxtui"
homepage = "https://github.com/microsandbox/rxtui"
documentation = "https://docs.rs/rxtui"
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
thiserror = "2.0"
[dependencies]
rxtui = { path = "rxtui", features = ["effects", "components"] }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "sync", "macros"] }
# Profile configurations
[profile.release]
opt-level = 3
lto = true
codegen-units = 1