-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (44 loc) · 1.16 KB
/
Cargo.toml
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
47
48
49
50
51
[package]
name = "boxingtimer2"
version = "0.1.0"
authors = ["Adrien Pensart <[email protected]>"]
edition = "2024"
[workspace]
members = ["sport"]
[build-dependencies]
dioxus-daisyui = "0.8.0"
sport = { path = "./sport" }
serde_json = "1.0.139"
[dependencies]
sport = { path = "./sport" }
dioxus = { version = "0.6.3", features = ["router"] }
gloo = { version = "0.11.0", features = ["futures", "dialogs"] }
console_error_panic_hook = "0.1.7"
derive_more = { version = "2.0", features = ["full"] }
js-sys = "0.3.76"
web-sys = { version = "0.3.76", features = ["HtmlAudioElement"] }
duration-string = { version = "0.5.2", features = ["serde"] }
itertools = "0.14.0"
thiserror = "2.0"
rand = "0.9"
bon = "3.3.0"
wasm-bindgen = "0.2.100"
wasm-bindgen-futures = "0.4.50"
slug = "0.1.6"
serde = "1.0.218"
serde_json = "1.0.135"
serde_with = { version = "3.12.0", features = ["chrono"] }
strum = "0.27.1"
strum_macros = "0.27.1"
test-log = "0.2.17"
getrandom = { version = "0.3", features = ["wasm_js"] }
[features]
default = ["web"]
web = ["dioxus/web"]
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"