mirror of
https://github.com/project-gauntlet/gauntlet.git
synced 2025-12-23 10:35:53 +00:00
34 lines
No EOL
1.2 KiB
TOML
34 lines
No EOL
1.2 KiB
TOML
[package]
|
|
name = "gauntlet"
|
|
edition = "2021"
|
|
repository = "https://github.com/project-gauntlet/gauntlet"
|
|
|
|
[workspace]
|
|
members = [
|
|
"rust/management_client",
|
|
"rust/client",
|
|
"rust/server",
|
|
"rust/common",
|
|
"rust/common_ui",
|
|
"rust/utils",
|
|
"rust/cli",
|
|
"rust/component_model",
|
|
"rust/scenario_runner",
|
|
]
|
|
[workspace.dependencies]
|
|
#iced = { version = "0.12.4", features = ["tokio", "lazy", "advanced", "image", "multi-window"] }
|
|
iced = { git = "https://github.com/project-gauntlet/iced.git", branch = "gauntlet", features = ["tokio", "lazy", "advanced", "image", "multi-window"] }
|
|
#iced_aw = { version = "0.9.0", features = ["icons", "date_picker", "floating_element", "wrap", "number_input", "grid", "spinner"] }
|
|
iced_aw = { git = "https://github.com/project-gauntlet/iced_aw.git", branch = "gauntlet", default-features = false, features = ["icons", "date_picker", "floating_element", "wrap", "number_input", "grid", "spinner"] }
|
|
#iced_table = "0.13.0"
|
|
iced_table = { git = "https://github.com/project-gauntlet/iced_table.git", branch = "gauntlet" }
|
|
|
|
[dependencies]
|
|
cli = { path = "rust/cli" }
|
|
|
|
[features]
|
|
release = ["cli/release"]
|
|
scenario_runner = ["cli/scenario_runner"]
|
|
|
|
[profile.release]
|
|
opt-level = 1 # something at opt-level 2 breaks deno |