Merge pull request #247 from StarArawn/v0.4.0
V0.4.0
No related branches found
No related tags found
Showing
- Cargo.toml 9 additions, 9 deletionsCargo.toml
- README.md 5 additions, 2 deletionsREADME.md
- book/src/chapter_1.md 1 addition, 1 deletionbook/src/chapter_1.md
- kayak_font/Cargo.toml 1 addition, 1 deletionkayak_font/Cargo.toml
- kayak_ui_macros/Cargo.toml 1 addition, 1 deletionkayak_ui_macros/Cargo.toml
- src/widgets/icons/mod.rs 5 additions, 3 deletionssrc/widgets/icons/mod.rs
[package] | ||
name = "kayak_ui" | ||
description = "A UI library built using the bevy game engine!" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
edition = "2021" | ||
resolver = "2" | ||
authors = ["John Mitchell"] | ||
... | ... | @@ -17,21 +17,21 @@ members = ["kayak_ui_macros", "kayak_font"] |
[dependencies] | ||
bevy = { version = "0.10", default-features = false, features = ["bevy_render", "bevy_sprite", "bevy_asset", "bevy_winit", "bevy_core_pipeline", "bevy_ui"] } | ||
bevy_svg = { version="0.10.1", default-features = false } | ||
bitflags = "1.3.2" | ||
bytemuck = "1.12" | ||
dashmap = "5.4" | ||
kayak_font = { path = "./kayak_font", version = "0.3" } | ||
morphorm = "0.3" | ||
kayak_ui_macros = { path = "./kayak_ui_macros", version = "0.3" } | ||
fancy-regex = "0.11.0" | ||
indexmap = "1.9" | ||
instant = "0.1" | ||
interpolation = { version = "0.2" } | ||
kayak_font = { path = "./kayak_font", version = "0.4" } | ||
kayak_ui_macros = { path = "./kayak_ui_macros", version = "0.4" } | ||
log = "0.4" | ||
bitflags = "1.3.2" | ||
morphorm = "0.3" | ||
reorder = "2.1" | ||
resources = "1.1" | ||
instant = "0.1" | ||
bevy_svg = { git = "https://github.com/StarArawn/bevy_svg", rev = "9a14eccf680b7fa98f6494fc10e8aaa5931de5c8", default-features = false } | ||
interpolation = { version = "0.2" } | ||
usvg = "0.27" | ||
fancy-regex = "0.11.0" | ||
uuid = { version = "1.3", features = ["v4"] } | ||
[dev-dependencies] | ||
... | ... |
Please register or sign in to comment