-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (37 loc) · 977 Bytes
/
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
[package]
name = "dioxus-chessboard"
version = "0.1.3"
edition = "2021"
authors = [
"Victor Ermolaev <[email protected]>",
]
repository = "https://github.com/vnermolaev/dioxus-chessboard"
documentation = "https://docs.rs/dioxus-chessboard/"
license = "MIT OR Apache-2.0"
keywords = ["web", "doixus", "component", "chessboard"]
categories = ["gui", "wasm", "web-programming"]
description = "A chessboard component for Dioxus"
readme = "README.md"
[[example]]
name = "showcase"
path = "example/showcase.rs"
[dependencies]
dioxus = { version = "0.6.1", features = ["web"] }
dioxus-logger = "0.6.1"
tracing = "0.1.40"
owlchess = "0.4.0"
futures-util = { version = "0.3.30", optional = true }
[features]
showcase = ["futures-util"]
default = ["web"]
web = ["dioxus/web"]
desktop = ["dioxus/desktop"]
mobile = ["dioxus/mobile"]
[profile]
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"