Add glsl files to egui_web and egui_glium includes

This commit is contained in:
Emil Ernerfeldt 2021-02-28 20:07:24 +01:00
parent 8047a0f87f
commit 8fb1472560
2 changed files with 10 additions and 2 deletions

View file

@ -10,7 +10,11 @@ readme = "README.md"
repository = "https://github.com/emilk/egui"
categories = ["gui", "game-development"]
keywords = ["glium", "egui", "gui", "gamedev"]
include = [ "**/*.rs", "Cargo.toml"]
include = [
"**/*.rs",
"Cargo.toml",
"src/shader/*.glsl",
]
[dependencies]
clipboard = "0.5"

View file

@ -10,7 +10,11 @@ readme = "README.md"
repository = "https://github.com/emilk/egui"
categories = ["gui", "web-programming"]
keywords = ["wasm", "web", "egui", "gui", "gamedev"]
include = [ "**/*.rs", "Cargo.toml"]
include = [
"**/*.rs",
"Cargo.toml",
"src/shader/*.glsl",
]
[lib]
crate-type = ["cdylib", "rlib"]