From c141fc354ad8b164d386afd2d4004a2ac2b1e8fd Mon Sep 17 00:00:00 2001 From: John Mitchell <startoaster23@gmail.com> Date: Tue, 15 Nov 2022 09:19:36 -0500 Subject: [PATCH] Removed the git parameter for bevy. --- Cargo.toml | 2 +- kayak_font/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 28d4fd0..9204a80 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ members = ["kayak_ui_macros", "kayak_font"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bevy = { git = "https://github.com/bevyengine/bevy", version = "0.9" } +bevy = { version = "0.9" } bytemuck = "1.12" dashmap = "5.4" kayak_font = { path = "./kayak_font", version = "0.1" } diff --git a/kayak_font/Cargo.toml b/kayak_font/Cargo.toml index 934feb9..1d24693 100644 --- a/kayak_font/Cargo.toml +++ b/kayak_font/Cargo.toml @@ -22,8 +22,8 @@ unicode-segmentation = "1.10.0" # Provides UAX #14 line break segmentation xi-unicode = "0.3" -bevy = { git = "https://github.com/bevyengine/bevy", version = "0.9", optional = true, default-features = false, features = ["bevy_asset", "bevy_render", "bevy_core_pipeline"] } +bevy = { version = "0.9", optional = true, default-features = false, features = ["bevy_asset", "bevy_render", "bevy_core_pipeline"] } [dev-dependencies] -bevy = { git = "https://github.com/bevyengine/bevy", version = "0.9" } +bevy = { version = "0.9" } bytemuck = "1.12.0" -- GitLab