-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
48 lines (39 loc) · 1.2 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
[package]
name = "dioxus-motion"
description = "Animations library for Dioxus."
version = "0.2.3"
edition = "2021"
license = "MIT"
authors = ["Sabin Regmi <[email protected]>"]
readme = "./README.md"
homepage = "https://wheregmis.github.io"
repository = "https://github.com/wheregmis/dioxus-motion.git"
keywords = ["dioxus", "animations"]
categories = ["graphics", "gui"]
[dependencies]
easer = "0.3.0"
dioxus-hooks = "0.6.2"
futures-util = { version = "0.3.31", default-features = false }
dioxus-signals = "0.6.2"
instant = { version = "0.1.13", optional = true }
wasm-bindgen = { version = "0.2.100", optional = true, default-features = false }
web-sys = { version = "0.3.77", optional = true, default-features = false, features = [
"Window",
] }
futures-channel = { version = "0.3.31", default-features = false }
# For desktop platforms
tokio = { version = "1.43.0", optional = true, default-features = false }
[features]
default = ["web"]
web = ["wasm-bindgen", "web-sys", "instant/wasm-bindgen"]
desktop = ["tokio", "instant"]
[profile]
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"
[workspace]
members = [".", "example_projects"]