1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-02 06:40:06 -04:00

[build] use path dependencies in all Cargo.toml

This commit is contained in:
Emil Ernerfeldt
2020-07-30 12:14:51 +02:00
parent b17f200b35
commit eb713ac514
6 changed files with 20 additions and 59 deletions

View File

@@ -6,6 +6,8 @@ license = "MIT OR Apache-2.0"
edition = "2018"
[dependencies]
egui = { git = "https://github.com/emilk/emigui" }
egui_glium = { git = "https://github.com/emilk/emigui" }
#egui = { git = "https://github.com/emilk/emigui" }
egui = { path = "../egui" }
#egui_glium = { git = "https://github.com/emilk/emigui" }
egui_glium = { path = "../egui_glium" }
serde = { version = "1", features = ["derive"] }