Skip to content

Commit 2998f7c

Browse files
authored
Merge pull request #2 from wheregmis/migrating_dx_motion
Migrating dx motion
2 parents bf152cd + a4a0aca commit 2998f7c

24 files changed

+6009
-1394
lines changed

.DS_Store

0 Bytes
Binary file not shown.

Cargo.lock

Lines changed: 4195 additions & 774 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,20 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
87
dioxus = { version = "0.6.1", features = ["router"] }
98
dioxus-logger = { version = "0.6.1" }
109
pulldown-cmark = "0.12.2"
11-
serde = { version = "1.0.216", features = ["derive"] }
10+
serde = { version = "1.0.217", features = ["derive"] }
1211
toml = "0.8.19"
1312
include_dir = "0.7.3"
13+
dioxus-motion = { git = "https://github.com/wheregmis/dioxus-motion.git", branch = "enhanced_motion_dump", default-features = false, optional = true }
14+
easer = { version = "0.3.0", default-features = false }
1415

1516
[features]
16-
default = []
17-
web = ["dioxus/web"]
17+
default = ["web"]
18+
web = ["dioxus/web", "dioxus-motion/web"]
19+
desktop = ["dioxus/desktop", "dioxus-motion/desktop"]
20+
mobile = ["dioxus/mobile", "dioxus-motion/desktop"]
1821

1922
[profile.rapid]
2023
inherits = "dev"
@@ -30,3 +33,13 @@ opt-level = "z" # Optimize for size.
3033
lto = true # Enable link-time optimization.
3134
codegen-units = 32 #Parallelize codegen across 1 cores
3235
strip = true # Automatically strip symbols from the binary.
36+
37+
[profile.wasm-dev]
38+
inherits = "dev"
39+
opt-level = 1
40+
41+
[profile.server-dev]
42+
inherits = "dev"
43+
44+
[profile.android-dev]
45+
inherits = "dev"

assets/dioxus-motion.png

1.56 MB
Loading

assets/favicon.ico

-130 KB
Binary file not shown.

assets/header.svg

Lines changed: 0 additions & 20 deletions
This file was deleted.

assets/html-rsx.png

147 KB
Loading

0 commit comments

Comments
 (0)