Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
philpax committed Oct 4, 2023
1 parent 1191555 commit 80407e4
Show file tree
Hide file tree
Showing 163 changed files with 680 additions and 680 deletions.
146 changes: 73 additions & 73 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = ["crates/*", "libs/*", "shared_crates/*", "app", "campfire", "schema"]
resolver = "2"

[workspace.package]
version = "0.3.0-rc.5"
version = "0.3.0"
rust-version = "1.70.0"

[workspace.dependencies]
Expand Down
8 changes: 4 additions & 4 deletions crates/animation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_model = { path = "../model" , version = "0.3.0-rc.5" }
ambient_native_std = { path = "../native_std" , version = "0.3.0-rc.5" }
ambient_ecs = { path = "../ecs" , version = "0.3.0-rc.5" }
ambient_core = { path = "../core" , version = "0.3.0-rc.5" }
ambient_model = { path = "../model" , version = "0.3.0" }
ambient_native_std = { path = "../native_std" , version = "0.3.0" }
ambient_ecs = { path = "../ecs" , version = "0.3.0" }
ambient_core = { path = "../core" , version = "0.3.0" }
glam = { workspace = true }
ordered-float = { workspace = true }
serde = { workspace = true }
Expand Down
34 changes: 17 additions & 17 deletions crates/app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,24 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_sys = { path = "../sys" , version = "0.3.0-rc.5" }
ambient_native_std = { path = "../native_std" , version = "0.3.0-rc.5" }
ambient_core = { path = "../core" , version = "0.3.0-rc.5" }
ambient_gizmos = { path = "../gizmos" , version = "0.3.0-rc.5" }
ambient_gpu = { path = "../gpu" , version = "0.3.0-rc.5" }
ambient_gpu_ecs = { path = "../gpu_ecs" , version = "0.3.0-rc.5" }
ambient_renderer = { path = "../renderer" , version = "0.3.0-rc.5" }
ambient_cameras = { path = "../cameras" , version = "0.3.0-rc.5" }
ambient_ecs = { path = "../ecs" , version = "0.3.0-rc.5" }
ambient_ui_native = { path = "../ui_native" , version = "0.3.0-rc.5" }
ambient_focus = { path = "../focus" , version = "0.3.0-rc.5" }
ambient_input = { path = "../input" , version = "0.3.0-rc.5" }
ambient_model = { path = "../model" , version = "0.3.0-rc.5" }
ambient_animation = { path = "../animation" , version = "0.3.0-rc.5" }
ambient_procedurals = { path = "../procedurals" , version = "0.3.0-rc.5" }
ambient_settings = { path = "../settings" , version = "0.3.0-rc.5" }
ambient_sys = { path = "../sys" , version = "0.3.0" }
ambient_native_std = { path = "../native_std" , version = "0.3.0" }
ambient_core = { path = "../core" , version = "0.3.0" }
ambient_gizmos = { path = "../gizmos" , version = "0.3.0" }
ambient_gpu = { path = "../gpu" , version = "0.3.0" }
ambient_gpu_ecs = { path = "../gpu_ecs" , version = "0.3.0" }
ambient_renderer = { path = "../renderer" , version = "0.3.0" }
ambient_cameras = { path = "../cameras" , version = "0.3.0" }
ambient_ecs = { path = "../ecs" , version = "0.3.0" }
ambient_ui_native = { path = "../ui_native" , version = "0.3.0" }
ambient_focus = { path = "../focus" , version = "0.3.0" }
ambient_input = { path = "../input" , version = "0.3.0" }
ambient_model = { path = "../model" , version = "0.3.0" }
ambient_animation = { path = "../animation" , version = "0.3.0" }
ambient_procedurals = { path = "../procedurals" , version = "0.3.0" }
ambient_settings = { path = "../settings" , version = "0.3.0" }

ambient_element = { path = "../../shared_crates/element" , version = "0.3.0-rc.5" }
ambient_element = { path = "../../shared_crates/element" , version = "0.3.0" }

winit = { workspace = true }
flume = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/asset_cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_sys = { path = "../sys" , version = "0.3.0-rc.5" }
ambient_sys = { path = "../sys" , version = "0.3.0" }
serde = { workspace = true }
as-any = { workspace = true }
async-trait = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions crates/audio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_sys = { path = "../sys", version = "0.3.0-rc.5" }
ambient_sys = { path = "../sys", version = "0.3.0" }
flume = { workspace = true }
derive_more = { workspace = true }
log = { workspace = true }
Expand All @@ -27,11 +27,11 @@ ordered-float = { workspace = true }
dashmap = { workspace = true }
derivative = { workspace = true }

ambient_ui_native = { path = "../ui_native" , version = "0.3.0-rc.5" }
ambient_ui_native = { path = "../ui_native" , version = "0.3.0" }
cpal = "0.14.2"
lewton = "0.10.2"
hound = "3.5.0"
ambient_native_std = { path = "../native_std" , version = "0.3.0-rc.5" }
ambient_native_std = { path = "../native_std" , version = "0.3.0" }
serde = { workspace = true, features = ["derive"] }

circular-queue = "0.2"
Expand Down
8 changes: 4 additions & 4 deletions crates/cameras/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_native_std = { path = "../native_std" , version = "0.3.0-rc.5" }
ambient_ecs = { path = "../ecs" , version = "0.3.0-rc.5" }
ambient_core = { path = "../core" , version = "0.3.0-rc.5" }
ambient_element = { path = "../../shared_crates/element" , version = "0.3.0-rc.5" }
ambient_native_std = { path = "../native_std" , version = "0.3.0" }
ambient_ecs = { path = "../ecs" , version = "0.3.0" }
ambient_core = { path = "../core" , version = "0.3.0" }
ambient_element = { path = "../../shared_crates/element" , version = "0.3.0" }
winit = { workspace = true }
derive_more = { workspace = true }
glam = { workspace = true }
20 changes: 10 additions & 10 deletions crates/client_shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_core = { path = "../core" , version = "0.3.0-rc.5" }
ambient_ecs = { path = "../ecs" , version = "0.3.0-rc.5" }
ambient_element = { path = "../../shared_crates/element" , version = "0.3.0-rc.5" }
ambient_input = { path = "../input" , version = "0.3.0-rc.5" }
ambient_network = { path = "../network/" , version = "0.3.0-rc.5" }
ambient_shared_types = { path = "../../shared_crates/shared_types/" , version = "0.3.0-rc.5" }
ambient_ui_native = { path = "../ui_native/" , version = "0.3.0-rc.5" }
ambient_layout = { path = "../layout/" , version = "0.3.0-rc.5" }
ambient_debugger = { path = "../debugger/" , version = "0.3.0-rc.5" }
ambient_core = { path = "../core" , version = "0.3.0" }
ambient_ecs = { path = "../ecs" , version = "0.3.0" }
ambient_element = { path = "../../shared_crates/element" , version = "0.3.0" }
ambient_input = { path = "../input" , version = "0.3.0" }
ambient_network = { path = "../network/" , version = "0.3.0" }
ambient_shared_types = { path = "../../shared_crates/shared_types/" , version = "0.3.0" }
ambient_ui_native = { path = "../ui_native/" , version = "0.3.0" }
ambient_layout = { path = "../layout/" , version = "0.3.0" }
ambient_debugger = { path = "../debugger/" , version = "0.3.0" }

ambient_ecs_editor = { path = "../ecs_editor/" , version = "0.3.0-rc.5" }
ambient_ecs_editor = { path = "../ecs_editor/" , version = "0.3.0" }

glam = { workspace = true }
rand = { workspace = true }
6 changes: 3 additions & 3 deletions crates/cloud_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_asset_cache = { path = "../asset_cache/", version = "0.3.0-rc.5" }
ambient_native_std = { path = "../native_std", version = "0.3.0-rc.5" }
ambient_sys = { path = "../sys", version = "0.3.0-rc.5" }
ambient_asset_cache = { path = "../asset_cache/", version = "0.3.0" }
ambient_native_std = { path = "../native_std", version = "0.3.0" }
ambient_sys = { path = "../sys", version = "0.3.0" }

anyhow = { workspace = true }
log = { workspace = true }
Expand Down
10 changes: 5 additions & 5 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_ecs = { path = "../ecs" , version = "0.3.0-rc.5" }
ambient_sys = { path = "../sys" , version = "0.3.0-rc.5" }
ambient_native_std = { path = "../native_std" , version = "0.3.0-rc.5" }
ambient_gpu = { path = "../gpu" , version = "0.3.0-rc.5" }
ambient_gpu_ecs = { path = "../gpu_ecs" , version = "0.3.0-rc.5" }
ambient_ecs = { path = "../ecs" , version = "0.3.0" }
ambient_sys = { path = "../sys" , version = "0.3.0" }
ambient_native_std = { path = "../native_std" , version = "0.3.0" }
ambient_gpu = { path = "../gpu" , version = "0.3.0" }
ambient_gpu_ecs = { path = "../gpu_ecs" , version = "0.3.0" }

itertools = { workspace = true }
yaml-rust = { workspace = true }
Expand Down
24 changes: 12 additions & 12 deletions crates/debugger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/AmbientRun/Ambient"

[dependencies]
ambient_ui_native = { path = "../ui_native", version = "0.3.0-rc.5" }
ambient_ecs = { path = "../ecs", version = "0.3.0-rc.5" }
ambient_native_std = { path = "../native_std", version = "0.3.0-rc.5" }
ambient_renderer = { path = "../renderer", version = "0.3.0-rc.5" }
ambient_core = { path = "../core", version = "0.3.0-rc.5" }
ambient_gizmos = { path = "../gizmos", version = "0.3.0-rc.5" }
ambient_rpc = { path = "../rpc", version = "0.3.0-rc.5" }
ambient_network = { path = "../network", version = "0.3.0-rc.5" }
ambient_sys = { path = "../sys", version = "0.3.0-rc.5" }
ambient_ui_native = { path = "../ui_native", version = "0.3.0" }
ambient_ecs = { path = "../ecs", version = "0.3.0" }
ambient_native_std = { path = "../native_std", version = "0.3.0" }
ambient_renderer = { path = "../renderer", version = "0.3.0" }
ambient_core = { path = "../core", version = "0.3.0" }
ambient_gizmos = { path = "../gizmos", version = "0.3.0" }
ambient_rpc = { path = "../rpc", version = "0.3.0" }
ambient_network = { path = "../network", version = "0.3.0" }
ambient_sys = { path = "../sys", version = "0.3.0" }

ambient_std = { path = "../../shared_crates/std", version = "0.3.0-rc.5" }
ambient_element = { path = "../../shared_crates/element", version = "0.3.0-rc.5" }
ambient_std = { path = "../../shared_crates/std", version = "0.3.0" }
ambient_element = { path = "../../shared_crates/element", version = "0.3.0" }
ambient_shared_types = { path = "../../shared_crates/shared_types", features = [
"native",
], version = "0.3.0-rc.5" }
], version = "0.3.0" }

glam = { workspace = true }
wgpu = { workspace = true }
Expand Down
16 changes: 8 additions & 8 deletions crates/decals/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_asset_cache = { path = "../asset_cache" , version = "0.3.0-rc.5" }
ambient_ecs = { path = "../ecs" , version = "0.3.0-rc.5" }
ambient_renderer = { path = "../renderer" , version = "0.3.0-rc.5" }
ambient_gpu = { path = "../gpu" , version = "0.3.0-rc.5" }
ambient_gpu_ecs = { path = "../gpu_ecs" , version = "0.3.0-rc.5" }
ambient_native_std = { path = "../native_std" , version = "0.3.0-rc.5" }
ambient_core = { path = "../core" , version = "0.3.0-rc.5" }
ambient_meshes = { path = "../meshes" , version = "0.3.0-rc.5" }
ambient_asset_cache = { path = "../asset_cache" , version = "0.3.0" }
ambient_ecs = { path = "../ecs" , version = "0.3.0" }
ambient_renderer = { path = "../renderer" , version = "0.3.0" }
ambient_gpu = { path = "../gpu" , version = "0.3.0" }
ambient_gpu_ecs = { path = "../gpu_ecs" , version = "0.3.0" }
ambient_native_std = { path = "../native_std" , version = "0.3.0" }
ambient_core = { path = "../core" , version = "0.3.0" }
ambient_meshes = { path = "../meshes" , version = "0.3.0" }
log = { workspace = true }
glam = { workspace = true }

Expand Down
8 changes: 4 additions & 4 deletions crates/deploy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_native_std = { path = "../native_std" , version = "0.3.0-rc.5" }
ambient_package = { path = "../../shared_crates/package" , version = "0.3.0-rc.5" }
ambient_std = { path = "../../shared_crates/std" , version = "0.3.0-rc.5" }
ambient_sys = { path = "../sys" , version = "0.3.0-rc.5" }
ambient_native_std = { path = "../native_std" , version = "0.3.0" }
ambient_package = { path = "../../shared_crates/package" , version = "0.3.0" }
ambient_std = { path = "../../shared_crates/std" , version = "0.3.0" }
ambient_sys = { path = "../sys" , version = "0.3.0" }

anyhow = { workspace = true }
flume = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions crates/ecs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_sys = { path = "../sys", version = "0.3.0-rc.5" }
ambient_native_std = { path = "../native_std" , version = "0.3.0-rc.5" }
ambient_shared_types = { path = "../../shared_crates/shared_types", features = ["native"] , version = "0.3.0-rc.5" }
ambient_package_rt = { path = "../../shared_crates/package_rt" , version = "0.3.0-rc.5" }
ambient_sys = { path = "../sys", version = "0.3.0" }
ambient_native_std = { path = "../native_std" , version = "0.3.0" }
ambient_shared_types = { path = "../../shared_crates/shared_types", features = ["native"] , version = "0.3.0" }
ambient_package_rt = { path = "../../shared_crates/package_rt" , version = "0.3.0" }

as-any = { workspace = true }
itertools = { workspace = true }
Expand Down
14 changes: 7 additions & 7 deletions crates/ecs_editor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_ecs = { path = "../ecs" , version = "0.3.0-rc.5" }
ambient_native_std = { path = "../native_std" , version = "0.3.0-rc.5" }
ambient_ui_native = { path = "../ui_native" , version = "0.3.0-rc.5" }
ambient_layout = { path = "../layout" , version = "0.3.0-rc.5" }
ambient_core = { path = "../core" , version = "0.3.0-rc.5" }
ambient_element = { path = "../../shared_crates/element" , version = "0.3.0-rc.5" }
ambient_renderer = { path = "../renderer" , version = "0.3.0-rc.5" }
ambient_ecs = { path = "../ecs" , version = "0.3.0" }
ambient_native_std = { path = "../native_std" , version = "0.3.0" }
ambient_ui_native = { path = "../ui_native" , version = "0.3.0" }
ambient_layout = { path = "../layout" , version = "0.3.0" }
ambient_core = { path = "../core" , version = "0.3.0" }
ambient_element = { path = "../../shared_crates/element" , version = "0.3.0" }
ambient_renderer = { path = "../renderer" , version = "0.3.0" }
env_logger = { workspace = true }
itertools = { workspace = true }
glam = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/focus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ rust-version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_ecs = { path = "../ecs" , version = "0.3.0-rc.5" }
ambient_ecs = { path = "../ecs" , version = "0.3.0" }
winit = { workspace = true }
12 changes: 6 additions & 6 deletions crates/gizmos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_native_std = { path = "../native_std" , version = "0.3.0-rc.5" }
ambient_ecs = { path = "../ecs" , version = "0.3.0-rc.5" }
ambient_gpu = { path = "../gpu" , version = "0.3.0-rc.5" }
ambient_core = { path = "../core" , version = "0.3.0-rc.5" }
ambient_meshes = { path = "../meshes" , version = "0.3.0-rc.5" }
ambient_renderer = { path = "../renderer" , version = "0.3.0-rc.5" }
ambient_native_std = { path = "../native_std" , version = "0.3.0" }
ambient_ecs = { path = "../ecs" , version = "0.3.0" }
ambient_gpu = { path = "../gpu" , version = "0.3.0" }
ambient_core = { path = "../core" , version = "0.3.0" }
ambient_meshes = { path = "../meshes" , version = "0.3.0" }
ambient_renderer = { path = "../renderer" , version = "0.3.0" }
dashmap = { workspace = true }
glam = { workspace = true }
bytemuck = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions crates/gpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_sys = { path = "../sys", version = "0.3.0-rc.5" }
ambient_native_std = { path = "../native_std", version = "0.3.0-rc.5" }
ambient_settings = { path = "../settings", version = "0.3.0-rc.5" }
ambient_sys = { path = "../sys", version = "0.3.0" }
ambient_native_std = { path = "../native_std", version = "0.3.0" }
ambient_settings = { path = "../settings", version = "0.3.0" }

ambient_std = { path = "../../shared_crates/std", version = "0.3.0-rc.5" }
ambient_std = { path = "../../shared_crates/std", version = "0.3.0" }

aho-corasick = { workspace = true }
bytemuck = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions crates/gpu_ecs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ rust-version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_ecs = { path = "../ecs" , version = "0.3.0-rc.5" }
ambient_gpu = { path = "../gpu" , version = "0.3.0-rc.5" }
ambient_native_std = { path = "../native_std" , version = "0.3.0-rc.5" }
ambient_ecs = { path = "../ecs" , version = "0.3.0" }
ambient_gpu = { path = "../gpu" , version = "0.3.0" }
ambient_native_std = { path = "../native_std" , version = "0.3.0" }
derive_more = { workspace = true }
glam = { workspace = true }
itertools = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions crates/input/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_native_std = { path = "../native_std" , version = "0.3.0-rc.5" }
ambient_ecs = { path = "../ecs" , version = "0.3.0-rc.5" }
ambient_core = { path = "../core" , version = "0.3.0-rc.5" }
ambient_shared_types = { path = "../../shared_crates/shared_types", features = ["native"] , version = "0.3.0-rc.5" }
ambient_native_std = { path = "../native_std" , version = "0.3.0" }
ambient_ecs = { path = "../ecs" , version = "0.3.0" }
ambient_core = { path = "../core" , version = "0.3.0" }
ambient_shared_types = { path = "../../shared_crates/shared_types", features = ["native"] , version = "0.3.0" }
winit = { workspace = true }
glam = { workspace = true }
serde = { workspace = true }
Expand Down
10 changes: 5 additions & 5 deletions crates/layout/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_ecs = { path = "../ecs" , version = "0.3.0-rc.5" }
ambient_gpu_ecs = { path = "../gpu_ecs" , version = "0.3.0-rc.5" }
ambient_gpu = { path = "../gpu" , version = "0.3.0-rc.5" }
ambient_core = { path = "../core" , version = "0.3.0-rc.5" }
ambient_input = { path = "../input" , version = "0.3.0-rc.5" }
ambient_ecs = { path = "../ecs" , version = "0.3.0" }
ambient_gpu_ecs = { path = "../gpu_ecs" , version = "0.3.0" }
ambient_gpu = { path = "../gpu" , version = "0.3.0" }
ambient_core = { path = "../core" , version = "0.3.0" }
ambient_input = { path = "../input" , version = "0.3.0" }
glam = { workspace = true }
itertools = { workspace = true }
log = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/meshes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_native_std = { path = "../native_std" , version = "0.3.0-rc.5" }
ambient_gpu = { path = "../gpu" , version = "0.3.0-rc.5" }
ambient_native_std = { path = "../native_std" , version = "0.3.0" }
ambient_gpu = { path = "../gpu" , version = "0.3.0" }
glam = { workspace = true }
serde = { workspace = true }
Loading

0 comments on commit 80407e4

Please sign in to comment.