Skip to content

Commit 0b6836e

Browse files
committed
Migrated
1 parent 8090560 commit 0b6836e

File tree

6 files changed

+12
-23
lines changed

6 files changed

+12
-23
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pulldown-cmark = "0.12.2"
1010
serde = { version = "1.0.217", features = ["derive"] }
1111
toml = "0.8.19"
1212
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 }
13+
dioxus-motion = { version = "0.2.1", default-features = false, optional = true }
1414
easer = { version = "0.3.0", default-features = false }
1515

1616
[features]

src/components/profile.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
use dioxus::prelude::*;
2-
use dioxus_motion::{
3-
enhanced_motion::{use_motion, AnimationSequence, EnhancedAnimationManager},
4-
prelude::*,
5-
};
2+
use dioxus_motion::prelude::*;
63
use easer::functions::Easing;
74
use std::time::Duration;
85

src/components/project_grid.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
use dioxus::prelude::*;
2-
use dioxus_motion::{
3-
enhanced_motion::{use_motion, AnimationSequence, EnhancedAnimationManager},
4-
prelude::*,
5-
};
2+
use dioxus_motion::prelude::*;
63
use easer::functions::Easing;
74
use std::time::Duration;
85

src/components/testimonials.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
use dioxus::hooks::*;
22
use dioxus::prelude::*;
3-
use dioxus_motion::{
4-
enhanced_motion::{use_motion, AnimationSequence, EnhancedAnimationManager},
5-
prelude::*,
6-
};
3+
use dioxus_motion::prelude::*;
74
use easer::functions::Easing;
85
use std::time::Duration;
96

src/views/blog.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
use crate::{components::Markdown, Route};
22
use dioxus::prelude::*;
3-
use dioxus_motion::{
4-
enhanced_motion::{use_motion, AnimationSequence, EnhancedAnimationManager},
5-
prelude::*,
6-
};
3+
use dioxus_motion::prelude::*;
74
use document::eval;
85
// Add this import
96
use serde::Deserialize;

0 commit comments

Comments
 (0)