-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 943 Bytes
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 943 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
[package]
name = "dxc"
description = "A concise, modern dioxus component library"
keywords = ["ui", "component", "dioxus", "web", "desktop"]
edition = "2024"
rust-version = "1.89.0"
version = "1.0.0"
authors = ["efahnjoe"]
license = "MIT"
repository = "https://github.com/efahnjoe/dxc"
homepage = "https://github.com/efahnjoe/dxc#README.md"
readme = "README.md"
[dependencies]
dioxus = { version = "^0.7.3", features = ["router", "fullstack"] }
dxc-icons = "^0.3.0"
dxc-macros = "^0.2.0"
dxc-theme-chalk = "0.1.0"
once_cell = "^1.21.3"
serde = { version = "^1.0.228", features = ["derive"] }
strum = { version = "^0.27.2", features = ["derive"] }
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"
# Examples
# If you want to run the example, try this: dx serve --plantform web --example [name]
# [[example]]
# name = "button"
# path = "examples/button/main.rs"