Skip to content

Commit fe7f3eb

Browse files
committed
rename bevy_utils to notation_bevy_utils
1 parent 03fb434 commit fe7f3eb

File tree

99 files changed

+113
-113
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+113
-113
lines changed

Cargo.lock

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

apps/notation_tool/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "notation_tool"
33
version = "0.1.0"
4-
edition = "2018"
4+
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

apps/notation_viewer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "notation_viewer"
33
version = "0.1.0"
4-
edition = "2018"
4+
edition = "2021"
55
description = "Notation Viewer"
66

77
[package.metadata.bundle]

crates/notation_bevy/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "notation_bevy"
33
version = "0.1.0"
4-
edition = "2018"
4+
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/notation-fun/notation"
77

@@ -19,12 +19,12 @@ default = [
1919

2020
dev = [
2121
#"bevy/dynamic",
22-
"bevy_utils/dev",
22+
"notation_bevy_utils/dev",
2323
]
2424

2525
inspector = [
2626
"bevy-inspector-egui",
27-
"bevy_utils/inspector",
27+
"notation_bevy_utils/inspector",
2828
"notation_midi/inspector",
2929
]
3030

@@ -33,7 +33,7 @@ native = [
3333
]
3434

3535
[dependencies]
36-
bevy_utils = { path = "../bevy_utils" }
36+
notation_bevy_utils = { path = "../notation_bevy_utils" }
3737

3838
notation_model = { path = "../notation_model" }
3939
notation_midi = { path = "../notation_midi" }

crates/notation_bevy/src/bar/bar_beat.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::fmt::Display;
22

33
use bevy::prelude::*;
44
use bevy_prototype_lyon::prelude::*;
5-
use bevy_utils::prelude::{FillRectangle, LayoutSize, ShapeOp};
5+
use notation_bevy_utils::prelude::{FillRectangle, LayoutSize, ShapeOp};
66

77
use crate::prelude::{BarData, NotationTheme, TabState};
88
use notation_model::prelude::{Signature, TabBar};

crates/notation_bevy/src/bar/bar_bundle.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use bevy::prelude::*;
2-
use bevy_utils::prelude::LayoutData;
2+
use notation_bevy_utils::prelude::LayoutData;
33
use std::sync::Arc;
44

55
use notation_model::prelude::{PlayingState, TabBar};

crates/notation_bevy/src/bar/bar_separator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use bevy::prelude::*;
2-
use bevy_utils::prelude::{BevyUtil, LayoutSize, ShapeOp, StrokeLine};
2+
use notation_bevy_utils::prelude::{BevyUtil, LayoutSize, ShapeOp, StrokeLine};
33

44
use crate::prelude::{BarData, NotationTheme};
55

crates/notation_bevy/src/bar/bar_view.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use crate::prelude::{
99
};
1010
use crate::tab::tab_events::BarViewDoLayoutEvent;
1111
use crate::ui::layout::NotationLayout;
12-
use bevy_utils::prelude::{BevyUtil, GridCell, LayoutQuery, ShapeOp, VBoxView, View, ViewQuery};
12+
use notation_bevy_utils::prelude::{BevyUtil, GridCell, LayoutQuery, ShapeOp, VBoxView, View, ViewQuery};
1313
use notation_model::prelude::TabBar;
1414

1515
use super::bar_beat::{BarBeatData, BarBeatValue};

crates/notation_bevy/src/chord/chord_diagram.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::fmt::Display;
22

33
use bevy::prelude::*;
44

5-
use bevy_utils::prelude::{OutlineCircle, ShapeOp};
5+
use notation_bevy_utils::prelude::{OutlineCircle, ShapeOp};
66
use notation_model::prelude::{Chord, ModelEntryProps, PlayingState};
77

88
use crate::prelude::{ModelEntryData, NotationTheme};

crates/notation_bevy/src/chord/chord_note.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::fmt::Display;
22

33
use bevy::prelude::*;
44

5-
use bevy_utils::prelude::{FillCircle, ShapeOp};
5+
use notation_bevy_utils::prelude::{FillCircle, ShapeOp};
66
use notation_model::prelude::{Interval, Syllable};
77

88
use crate::prelude::{ModelEntryData, NotationTheme};

0 commit comments

Comments
 (0)