diff --git a/Cargo.lock b/Cargo.lock index a73e57b..5e0299c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1275,16 +1275,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2e6b451ff1143f6de0f33fc7f1b68fecfd2c7de06e104de96c4514de3f5396f8" dependencies = [ "bytemuck", - "emath 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "ecolor" -version = "0.28.1" -source = "git+https://github.com/emilk/egui?branch=master#56df31ab489312014d57247db438ecd7189a710a" -dependencies = [ - "bytemuck", - "emath 0.28.1 (git+https://github.com/emilk/egui?branch=master)", + "emath", "serde", ] @@ -1329,12 +1320,13 @@ dependencies = [ [[package]] name = "egui" version = "0.28.1" -source = "git+https://github.com/emilk/egui?branch=master#56df31ab489312014d57247db438ecd7189a710a" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20c97e70a2768de630f161bb5392cbd3874fcf72868f14df0e002e82e06cb798" dependencies = [ "accesskit", "ahash", - "emath 0.28.1 (git+https://github.com/emilk/egui?branch=master)", - "epaint 0.28.1 (git+https://github.com/emilk/egui?branch=master)", + "emath", + "epaint", "log", "nohash-hasher", "ron", @@ -1351,7 +1343,7 @@ dependencies = [ "bytemuck", "document-features", "egui", - "epaint 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)", + "epaint", "log", "thiserror", "type-map", @@ -1422,14 +1414,6 @@ name = "emath" version = "0.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0a6a21708405ea88f63d8309650b4d77431f4bc28fb9d8e6f77d3963b51249e6" -dependencies = [ - "bytemuck", -] - -[[package]] -name = "emath" -version = "0.28.1" -source = "git+https://github.com/emilk/egui?branch=master#56df31ab489312014d57247db438ecd7189a710a" dependencies = [ "bytemuck", "serde", @@ -1523,22 +1507,8 @@ dependencies = [ "ab_glyph", "ahash", "bytemuck", - "ecolor 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)", - "emath 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)", - "nohash-hasher", - "parking_lot", -] - -[[package]] -name = "epaint" -version = "0.28.1" -source = "git+https://github.com/emilk/egui?branch=master#56df31ab489312014d57247db438ecd7189a710a" -dependencies = [ - "ab_glyph", - "ahash", - "bytemuck", - "ecolor 0.28.1 (git+https://github.com/emilk/egui?branch=master)", - "emath 0.28.1 (git+https://github.com/emilk/egui?branch=master)", + "ecolor", + "emath", "log", "nohash-hasher", "parking_lot", diff --git a/Cargo.toml b/Cargo.toml index 2d69f76..4eae926 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -79,5 +79,3 @@ winapi = { version = "0.3" } [patch.crates-io] # async-openai = { path = "tmp/async-openai/async-openai" } # egui = { path = "tmp/egui/crates/egui" } -# TODO: https://github.com/emilk/egui/milestone/5. -egui = { git = "https://github.com/emilk/egui", branch = "master" }