-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 1.66 KB
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 1.66 KB
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
43
44
45
46
[package]
name = "prtq"
version = "0.1.0"
description = "prtq scene composer"
authors = ["François Desloges <fdesloges@hotmail.com>"]
edition = "2024"
license = "GPL-3.0-only"
repository = "https://github.com/fdlgs/prtq"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
const_format = "0.2.35"
derive_more = { version = "2.1.1", features = ["not", "from", "index", "display"] }
dioxus = { version = "=0.7.3", features = ["router", "fullstack", "logger"] }
gloo-timers = { version = "0.4.0", features = ["futures"] }
strum = "0.28.0"
strum_macros = "0.28.0"
#wasm-bindgen = { version = "0.2.114", optional = true }
#wasm-timer = "0.2.5"
#web-sys = { version = "0.391", features = [
# "SvgAnimationElement",
#], optional=true}
[features]
default = ["web"]
# The feature that are only required for the web = ["dioxus/web"] build target should be optional and only enabled in the web = ["dioxus/web"] feature
web = [
"dioxus/web",
# "dep:web-sys",
# "dep:wasm-bindgen",
]
# The feature that are only required for the desktop = ["dioxus/desktop"] build target should be optional and only enabled in the desktop = ["dioxus/desktop"] feature
desktop = [
"dioxus/desktop",
# "dep:web-sys",
# "dep:wasm-bindgen",
]
# The feature that are only required for the mobile = ["dioxus/mobile"] build target should be optional and only enabled in the mobile = ["dioxus/mobile"] feature
mobile = ["dioxus/mobile"]
# The feature that are only required for the server = ["dioxus/server"] build target should be optional and only enabled in the server = ["dioxus/server"] feature
server = ["dioxus/server"]