add "0.1" version to all bevy crate references
This commit is contained in:
parent
9aee5323e1
commit
34752a27bd
43
Cargo.toml
43
Cargo.toml
@ -23,28 +23,29 @@ members = [
|
||||
|
||||
[dependencies]
|
||||
# bevy
|
||||
bevy_app = { path = "crates/bevy_app" }
|
||||
bevy_asset = { path = "crates/bevy_asset" }
|
||||
bevy_type_registry = { path = "crates/bevy_type_registry" }
|
||||
bevy_core = { path = "crates/bevy_core" }
|
||||
bevy_diagnostic = { path = "crates/bevy_diagnostic" }
|
||||
bevy_ecs = { path = "crates/bevy_ecs" }
|
||||
bevy_input = { path = "crates/bevy_input" }
|
||||
bevy_math = { path = "crates/bevy_math" }
|
||||
bevy_pbr = { path = "crates/bevy_pbr" }
|
||||
bevy_property = { path = "crates/bevy_property" }
|
||||
bevy_render = { path = "crates/bevy_render" }
|
||||
bevy_scene = { path = "crates/bevy_scene" }
|
||||
bevy_sprite = { path = "crates/bevy_sprite" }
|
||||
bevy_transform = { path = "crates/bevy_transform" }
|
||||
bevy_text = { path = "crates/bevy_text" }
|
||||
bevy_ui = { path = "crates/bevy_ui" }
|
||||
bevy_window = { path = "crates/bevy_window" }
|
||||
bevy_app = { path = "crates/bevy_app", version = "0.1" }
|
||||
bevy_asset = { path = "crates/bevy_asset", version = "0.1" }
|
||||
bevy_type_registry = { path = "crates/bevy_type_registry", version = "0.1" }
|
||||
bevy_core = { path = "crates/bevy_core", version = "0.1" }
|
||||
bevy_diagnostic = { path = "crates/bevy_diagnostic", version = "0.1" }
|
||||
bevy_ecs = { path = "crates/bevy_ecs", version = "0.1" }
|
||||
bevy_input = { path = "crates/bevy_input", version = "0.1" }
|
||||
bevy_math = { path = "crates/bevy_math", version = "0.1" }
|
||||
bevy_pbr = { path = "crates/bevy_pbr", version = "0.1" }
|
||||
bevy_property = { path = "crates/bevy_property", version = "0.1" }
|
||||
bevy_render = { path = "crates/bevy_render", version = "0.1" }
|
||||
bevy_scene = { path = "crates/bevy_scene", version = "0.1" }
|
||||
bevy_sprite = { path = "crates/bevy_sprite", version = "0.1" }
|
||||
bevy_transform = { path = "crates/bevy_transform", version = "0.1" }
|
||||
bevy_text = { path = "crates/bevy_text", version = "0.1" }
|
||||
bevy_ui = { path = "crates/bevy_ui", version = "0.1" }
|
||||
bevy_window = { path = "crates/bevy_window", version = "0.1" }
|
||||
|
||||
bevy_audio = { path = "crates/bevy_audio", optional = true }
|
||||
bevy_gltf = { path = "crates/bevy_gltf", optional = true }
|
||||
bevy_wgpu = { path = "crates/bevy_wgpu", optional = true }
|
||||
bevy_winit = { path = "crates/bevy_winit", optional = true }
|
||||
# bevy (optional)
|
||||
bevy_audio = { path = "crates/bevy_audio", optional = true, version = "0.1" }
|
||||
bevy_gltf = { path = "crates/bevy_gltf", optional = true, version = "0.1" }
|
||||
bevy_wgpu = { path = "crates/bevy_wgpu", optional = true, version = "0.1" }
|
||||
bevy_winit = { path = "crates/bevy_winit", optional = true, version = "0.1" }
|
||||
|
||||
[dev-dependencies]
|
||||
rand = "0.7.2"
|
||||
|
@ -10,8 +10,11 @@ license = "MIT"
|
||||
keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
bevy_derive = { path = "../bevy_derive" }
|
||||
bevy_ecs = { path = "../bevy_ecs" }
|
||||
# bevy
|
||||
bevy_derive = { path = "../bevy_derive", version = "0.1" }
|
||||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
||||
|
||||
# other
|
||||
libloading = "0.6"
|
||||
log = { version = "0.4", features = ["release_max_level_info"] }
|
||||
serde = { version = "1.0", features = ["derive"]}
|
@ -14,11 +14,13 @@ default = ["filesystem_watcher"]
|
||||
filesystem_watcher = ["notify"]
|
||||
|
||||
[dependencies]
|
||||
bevy_app = { path = "../bevy_app" }
|
||||
bevy_ecs = { path = "../bevy_ecs" }
|
||||
bevy_type_registry = { path = "../bevy_type_registry" }
|
||||
bevy_property = { path = "../bevy_property" }
|
||||
# bevy
|
||||
bevy_app = { path = "../bevy_app", version = "0.1" }
|
||||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
||||
bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" }
|
||||
bevy_property = { path = "../bevy_property", version = "0.1" }
|
||||
|
||||
# other
|
||||
uuid = { version = "0.8", features = ["v4", "serde"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
crossbeam-channel = "0.4.2"
|
||||
|
@ -10,8 +10,11 @@ license = "MIT"
|
||||
keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
bevy_app = {path = "../bevy_app"}
|
||||
bevy_asset = {path = "../bevy_asset"}
|
||||
bevy_ecs = {path = "../bevy_ecs"}
|
||||
# bevy
|
||||
bevy_app = {path = "../bevy_app", version = "0.1"}
|
||||
bevy_asset = {path = "../bevy_asset", version = "0.1"}
|
||||
bevy_ecs = {path = "../bevy_ecs", version = "0.1"}
|
||||
|
||||
# other
|
||||
anyhow = "1.0"
|
||||
rodio = {version = "0.11", default-features = false, features = ["mp3"]}
|
||||
|
@ -10,9 +10,9 @@ license = "MIT"
|
||||
keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
bevy_app = { path = "../bevy_app" }
|
||||
bevy_derive = { path = "../bevy_derive" }
|
||||
bevy_ecs = { path = "../bevy_ecs" }
|
||||
bevy_property = { path = "../bevy_property" }
|
||||
bevy_type_registry = { path = "../bevy_type_registry" }
|
||||
bevy_math = { path = "../bevy_math" }
|
||||
bevy_app = { path = "../bevy_app", version = "0.1" }
|
||||
bevy_derive = { path = "../bevy_derive", version = "0.1" }
|
||||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
||||
bevy_property = { path = "../bevy_property", version = "0.1" }
|
||||
bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" }
|
||||
bevy_math = { path = "../bevy_math", version = "0.1" }
|
@ -13,7 +13,10 @@ keywords = ["bevy"]
|
||||
profiler = []
|
||||
|
||||
[dependencies]
|
||||
bevy_app = { path = "../bevy_app" }
|
||||
bevy_core = { path = "../bevy_core" }
|
||||
bevy_ecs = { path = "../bevy_ecs" }
|
||||
# bevy
|
||||
bevy_app = { path = "../bevy_app", version = "0.1" }
|
||||
bevy_core = { path = "../bevy_core", version = "0.1" }
|
||||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
||||
|
||||
# other
|
||||
uuid = { version = "0.8", features = ["v4", "serde"] }
|
||||
|
@ -10,10 +10,12 @@ license = "MIT"
|
||||
keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
bevy_app = { path = "../bevy_app" }
|
||||
bevy_asset = { path = "../bevy_asset" }
|
||||
bevy_render = { path = "../bevy_render" }
|
||||
# bevy
|
||||
bevy_app = { path = "../bevy_app", version = "0.1" }
|
||||
bevy_asset = { path = "../bevy_asset", version = "0.1" }
|
||||
bevy_render = { path = "../bevy_render", version = "0.1" }
|
||||
|
||||
# other
|
||||
gltf = { version = "0.15.2", default-features = false, features = ["utils"] }
|
||||
thiserror = "1.0"
|
||||
anyhow = "1.0"
|
@ -10,6 +10,6 @@ license = "MIT"
|
||||
keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
bevy_app = { path = "../bevy_app" }
|
||||
bevy_ecs = { path = "../bevy_ecs" }
|
||||
bevy_math = { path = "../bevy_math" }
|
||||
bevy_app = { path = "../bevy_app", version = "0.1" }
|
||||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
||||
bevy_math = { path = "../bevy_math", version = "0.1" }
|
||||
|
@ -10,15 +10,14 @@ license = "MIT"
|
||||
keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
bevy_app = { path = "../bevy_app" }
|
||||
bevy_asset = { path = "../bevy_asset" }
|
||||
bevy_type_registry = { path = "../bevy_type_registry" }
|
||||
bevy_core = { path = "../bevy_core" }
|
||||
bevy_ecs = { path = "../bevy_ecs" }
|
||||
bevy_derive = { path = "../bevy_derive" }
|
||||
bevy_render = { path = "../bevy_render" }
|
||||
bevy_property = { path = "../bevy_property" }
|
||||
bevy_transform = { path = "../bevy_transform" }
|
||||
bevy_window = { path = "../bevy_window" }
|
||||
|
||||
bevy_math = { path = "../bevy_math" }
|
||||
bevy_app = { path = "../bevy_app", version = "0.1" }
|
||||
bevy_asset = { path = "../bevy_asset", version = "0.1" }
|
||||
bevy_core = { path = "../bevy_core", version = "0.1" }
|
||||
bevy_derive = { path = "../bevy_derive", version = "0.1" }
|
||||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
||||
bevy_math = { path = "../bevy_math", version = "0.1" }
|
||||
bevy_property = { path = "../bevy_property", version = "0.1" }
|
||||
bevy_render = { path = "../bevy_render", version = "0.1" }
|
||||
bevy_transform = { path = "../bevy_transform", version = "0.1" }
|
||||
bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" }
|
||||
bevy_window = { path = "../bevy_window", version = "0.1" }
|
@ -10,9 +10,12 @@ license = "MIT"
|
||||
keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
bevy_ecs = {path = "../bevy_ecs"}
|
||||
bevy_math = {path = "../bevy_math"}
|
||||
bevy_property_derive = {path = "bevy_property_derive"}
|
||||
# bevy
|
||||
bevy_ecs = {path = "../bevy_ecs", version = "0.1"}
|
||||
bevy_math = {path = "../bevy_math", version = "0.1"}
|
||||
bevy_property_derive = {path = "bevy_property_derive", version = "0.1"}
|
||||
|
||||
# other
|
||||
erased-serde = "0.3"
|
||||
ron = {git = "https://github.com/ron-rs/ron", rev = "35355ba7eb495f07282162826c29873154c2fa14"}
|
||||
serde = "1"
|
||||
|
@ -11,15 +11,16 @@ keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
# bevy
|
||||
bevy_app = { path = "../bevy_app" }
|
||||
bevy_asset = { path = "../bevy_asset" }
|
||||
bevy_type_registry = { path = "../bevy_type_registry" }
|
||||
bevy_core = { path = "../bevy_core" }
|
||||
bevy_derive = { path = "../bevy_derive" }
|
||||
bevy_ecs = { path = "../bevy_ecs" }
|
||||
bevy_property = { path = "../bevy_property" }
|
||||
bevy_transform = { path = "../bevy_transform" }
|
||||
bevy_window = { path = "../bevy_window" }
|
||||
bevy_app = { path = "../bevy_app", version = "0.1" }
|
||||
bevy_asset = { path = "../bevy_asset", version = "0.1" }
|
||||
bevy_core = { path = "../bevy_core", version = "0.1" }
|
||||
bevy_derive = { path = "../bevy_derive", version = "0.1" }
|
||||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
||||
bevy_math = { path = "../bevy_math", version = "0.1" }
|
||||
bevy_property = { path = "../bevy_property", version = "0.1" }
|
||||
bevy_transform = { path = "../bevy_transform", version = "0.1" }
|
||||
bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" }
|
||||
bevy_window = { path = "../bevy_window", version = "0.1" }
|
||||
|
||||
# rendering
|
||||
spirv-reflect = "0.2.3"
|
||||
@ -29,7 +30,6 @@ image = { version = "0.23", default-features = false, features = ["png", "hdr"]
|
||||
# misc
|
||||
log = { version = "0.4", features = ["release_max_level_info"] }
|
||||
uuid = { version = "0.8", features = ["v4", "serde"] }
|
||||
bevy_math = { path = "../bevy_math" }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
bitflags = "1.0"
|
||||
smallvec = "1.4.0"
|
||||
|
@ -10,12 +10,14 @@ license = "MIT"
|
||||
keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
bevy_app = { path = "../bevy_app" }
|
||||
bevy_ecs = { path = "../bevy_ecs" }
|
||||
bevy_asset = { path = "../bevy_asset" }
|
||||
bevy_type_registry = { path = "../bevy_type_registry" }
|
||||
bevy_property = { path = "../bevy_property" }
|
||||
# bevy
|
||||
bevy_app = { path = "../bevy_app", version = "0.1" }
|
||||
bevy_asset = { path = "../bevy_asset", version = "0.1" }
|
||||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
||||
bevy_property = { path = "../bevy_property", version = "0.1" }
|
||||
bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" }
|
||||
|
||||
# other
|
||||
serde = { version = "1.0", features = ["derive"]}
|
||||
ron = { git = "https://github.com/ron-rs/ron", rev = "35355ba7eb495f07282162826c29873154c2fa14" }
|
||||
uuid = { version = "0.8", features = ["v4", "serde"] }
|
||||
|
@ -10,15 +10,17 @@ license = "MIT"
|
||||
keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
bevy_app = { path = "../bevy_app" }
|
||||
bevy_core = { path = "../bevy_core" }
|
||||
bevy_ecs = { path = "../bevy_ecs" }
|
||||
bevy_asset = { path = "../bevy_asset" }
|
||||
bevy_type_registry = { path = "../bevy_type_registry" }
|
||||
bevy_render = { path = "../bevy_render" }
|
||||
bevy_transform = { path = "../bevy_transform" }
|
||||
# bevy
|
||||
bevy_app = { path = "../bevy_app", version = "0.1" }
|
||||
bevy_asset = { path = "../bevy_asset", version = "0.1" }
|
||||
bevy_core = { path = "../bevy_core", version = "0.1" }
|
||||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
||||
bevy_math = { path = "../bevy_math", version = "0.1" }
|
||||
bevy_render = { path = "../bevy_render", version = "0.1" }
|
||||
bevy_transform = { path = "../bevy_transform", version = "0.1" }
|
||||
bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" }
|
||||
|
||||
bevy_math = { path = "../bevy_math" }
|
||||
# other
|
||||
rectangle-pack = "0.1"
|
||||
thiserror = "1.0"
|
||||
guillotiere = "0.5.2"
|
@ -10,12 +10,14 @@ license = "MIT"
|
||||
keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
bevy_app = { path = "../bevy_app" }
|
||||
bevy_core = { path = "../bevy_core" }
|
||||
bevy_asset = { path = "../bevy_asset" }
|
||||
bevy_render = { path = "../bevy_render" }
|
||||
bevy_sprite = { path = "../bevy_sprite" }
|
||||
# bevy
|
||||
bevy_app = { path = "../bevy_app", version = "0.1" }
|
||||
bevy_asset = { path = "../bevy_asset", version = "0.1" }
|
||||
bevy_core = { path = "../bevy_core", version = "0.1" }
|
||||
bevy_math = { path = "../bevy_math", version = "0.1" }
|
||||
bevy_render = { path = "../bevy_render", version = "0.1" }
|
||||
bevy_sprite = { path = "../bevy_sprite", version = "0.1" }
|
||||
|
||||
# other
|
||||
ab_glyph = "0.2.2"
|
||||
bevy_math = { path = "../bevy_math" }
|
||||
anyhow = "1.0"
|
@ -10,11 +10,14 @@ license = "MIT"
|
||||
keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
bevy_app = { path = "../bevy_app"}
|
||||
bevy_ecs = { path = "../bevy_ecs"}
|
||||
bevy_property = { path = "../bevy_property" }
|
||||
bevy_type_registry = { path = "../bevy_type_registry" }
|
||||
bevy_math = { path = "../bevy_math" }
|
||||
# bevy
|
||||
bevy_app = { path = "../bevy_app", version = "0.1" }
|
||||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
||||
bevy_math = { path = "../bevy_math", version = "0.1" }
|
||||
bevy_property = { path = "../bevy_property", version = "0.1" }
|
||||
bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" }
|
||||
|
||||
# other
|
||||
log = "0.4"
|
||||
smallvec = { version = "1.4", features = ["serde"] }
|
||||
|
||||
|
@ -10,7 +10,10 @@ license = "MIT"
|
||||
keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
bevy_app = { path = "../bevy_app" }
|
||||
bevy_ecs = { path = "../bevy_ecs" }
|
||||
bevy_property = { path = "../bevy_property" }
|
||||
# bevy
|
||||
bevy_app = { path = "../bevy_app", version = "0.1" }
|
||||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
||||
bevy_property = { path = "../bevy_property", version = "0.1" }
|
||||
|
||||
# other
|
||||
serde = { version = "1", features = ["derive"] }
|
@ -10,19 +10,20 @@ license = "MIT"
|
||||
keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
bevy_app = { path = "../bevy_app" }
|
||||
bevy_asset = { path = "../bevy_asset" }
|
||||
bevy_core = { path = "../bevy_core" }
|
||||
bevy_type_registry = { path = "../bevy_type_registry" }
|
||||
bevy_derive = { path = "../bevy_derive" }
|
||||
bevy_ecs = { path = "../bevy_ecs" }
|
||||
bevy_input = { path = "../bevy_input" }
|
||||
bevy_sprite = { path = "../bevy_sprite" }
|
||||
bevy_text = { path = "../bevy_text" }
|
||||
bevy_transform = { path = "../bevy_transform" }
|
||||
bevy_render = { path = "../bevy_render" }
|
||||
bevy_window = { path = "../bevy_window" }
|
||||
|
||||
bevy_math = { path = "../bevy_math" }
|
||||
# bevy
|
||||
bevy_app = { path = "../bevy_app", version = "0.1" }
|
||||
bevy_asset = { path = "../bevy_asset", version = "0.1" }
|
||||
bevy_core = { path = "../bevy_core", version = "0.1" }
|
||||
bevy_derive = { path = "../bevy_derive", version = "0.1" }
|
||||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
||||
bevy_input = { path = "../bevy_input", version = "0.1" }
|
||||
bevy_math = { path = "../bevy_math", version = "0.1" }
|
||||
bevy_render = { path = "../bevy_render", version = "0.1" }
|
||||
bevy_sprite = { path = "../bevy_sprite", version = "0.1" }
|
||||
bevy_text = { path = "../bevy_text", version = "0.1" }
|
||||
bevy_transform = { path = "../bevy_transform", version = "0.1" }
|
||||
bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" }
|
||||
bevy_window = { path = "../bevy_window", version = "0.1" }
|
||||
|
||||
# other
|
||||
stretch = "0.3"
|
@ -14,18 +14,17 @@ default = ["bevy_winit"]
|
||||
|
||||
[dependencies]
|
||||
# bevy
|
||||
bevy_app = { path = "../bevy_app" }
|
||||
bevy_asset = { path = "../bevy_asset" }
|
||||
bevy_core = { path = "../bevy_core" }
|
||||
bevy_diagnostic = { path = "../bevy_diagnostic" }
|
||||
bevy_ecs = { path = "../bevy_ecs" }
|
||||
bevy_render = { path = "../bevy_render" }
|
||||
bevy_window = { path = "../bevy_window" }
|
||||
bevy_winit = { path = "../bevy_winit", optional = true }
|
||||
bevy_app = { path = "../bevy_app", version = "0.1" }
|
||||
bevy_asset = { path = "../bevy_asset", version = "0.1" }
|
||||
bevy_core = { path = "../bevy_core", version = "0.1" }
|
||||
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.1" }
|
||||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
||||
bevy_render = { path = "../bevy_render", version = "0.1" }
|
||||
bevy_window = { path = "../bevy_window", version = "0.1" }
|
||||
bevy_winit = { path = "../bevy_winit", optional = true, version = "0.1" }
|
||||
|
||||
# render
|
||||
# other
|
||||
wgpu = { git = "https://github.com/gfx-rs/wgpu-rs.git", rev = "8c4d814607a303458ad9453da59dfc3a9951d7a3" }
|
||||
|
||||
pollster = "0.2.0"
|
||||
log = { version = "0.4", features = ["release_max_level_info"] }
|
||||
crossbeam-channel = "0.4.2"
|
||||
|
@ -10,7 +10,10 @@ license = "MIT"
|
||||
keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
bevy_app = { path = "../bevy_app" }
|
||||
bevy_ecs = { path = "../bevy_ecs" }
|
||||
bevy_math = { path = "../bevy_math" }
|
||||
# bevy
|
||||
bevy_app = { path = "../bevy_app", version = "0.1" }
|
||||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
||||
bevy_math = { path = "../bevy_math", version = "0.1" }
|
||||
|
||||
# other
|
||||
uuid = { version = "0.8", features = ["v4", "serde"] }
|
@ -10,11 +10,13 @@ license = "MIT"
|
||||
keywords = ["bevy"]
|
||||
|
||||
[dependencies]
|
||||
bevy_app = { path = "../bevy_app" }
|
||||
bevy_ecs = { path = "../bevy_ecs" }
|
||||
bevy_input = { path = "../bevy_input" }
|
||||
bevy_window = { path = "../bevy_window" }
|
||||
# bevy
|
||||
bevy_app = { path = "../bevy_app", version = "0.1" }
|
||||
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
||||
bevy_input = { path = "../bevy_input", version = "0.1" }
|
||||
bevy_math = { path = "../bevy_math", version = "0.1" }
|
||||
bevy_window = { path = "../bevy_window", version = "0.1" }
|
||||
|
||||
# other
|
||||
winit = { git = "https://github.com/rust-windowing/winit/", default-features = false, features = ["x11"] }
|
||||
bevy_math = { path = "../bevy_math" }
|
||||
log = { version = "0.4", features = ["release_max_level_info"] }
|
Loading…
Reference in New Issue
Block a user