Skip to content

Commit

Permalink
Update version to 0.3.1-nightly-2023-10-20
Browse files Browse the repository at this point in the history
  • Loading branch information
moose-jobs committed Oct 20, 2023
1 parent 175c76f commit 3ae08ca
Show file tree
Hide file tree
Showing 169 changed files with 790 additions and 790 deletions.
148 changes: 74 additions & 74 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.1-dev"
version = "0.3.1-nightly-2023-10-20"
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.1-dev" }
ambient_native_std = { path = "../native_std" , version = "0.3.1-dev" }
ambient_ecs = { path = "../ecs" , version = "0.3.1-dev" }
ambient_core = { path = "../core" , version = "0.3.1-dev" }
ambient_model = { path = "../model" , version = "0.3.1-nightly-2023-10-20" }
ambient_native_std = { path = "../native_std" , version = "0.3.1-nightly-2023-10-20" }
ambient_ecs = { path = "../ecs" , version = "0.3.1-nightly-2023-10-20" }
ambient_core = { path = "../core" , version = "0.3.1-nightly-2023-10-20" }
glam = { workspace = true }
ordered-float = { workspace = true }
serde = { workspace = true }
Expand Down
36 changes: 18 additions & 18 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.1-dev" }
ambient_native_std = { path = "../native_std" , version = "0.3.1-dev" }
ambient_core = { path = "../core" , version = "0.3.1-dev" }
ambient_gizmos = { path = "../gizmos" , version = "0.3.1-dev" }
ambient_gpu = { path = "../gpu" , version = "0.3.1-dev" }
ambient_gpu_ecs = { path = "../gpu_ecs" , version = "0.3.1-dev" }
ambient_renderer = { path = "../renderer" , version = "0.3.1-dev" }
ambient_cameras = { path = "../cameras" , version = "0.3.1-dev" }
ambient_ecs = { path = "../ecs" , version = "0.3.1-dev" }
ambient_ui_native = { path = "../ui_native" , version = "0.3.1-dev" }
ambient_focus = { path = "../focus" , version = "0.3.1-dev" }
ambient_input = { path = "../input" , version = "0.3.1-dev" }
ambient_model = { path = "../model" , version = "0.3.1-dev" }
ambient_animation = { path = "../animation" , version = "0.3.1-dev" }
ambient_procedurals = { path = "../procedurals" , version = "0.3.1-dev" }
ambient_settings = { path = "../settings" , version = "0.3.1-dev" }
ambient_sys = { path = "../sys" , version = "0.3.1-nightly-2023-10-20" }
ambient_native_std = { path = "../native_std" , version = "0.3.1-nightly-2023-10-20" }
ambient_core = { path = "../core" , version = "0.3.1-nightly-2023-10-20" }
ambient_gizmos = { path = "../gizmos" , version = "0.3.1-nightly-2023-10-20" }
ambient_gpu = { path = "../gpu" , version = "0.3.1-nightly-2023-10-20" }
ambient_gpu_ecs = { path = "../gpu_ecs" , version = "0.3.1-nightly-2023-10-20" }
ambient_renderer = { path = "../renderer" , version = "0.3.1-nightly-2023-10-20" }
ambient_cameras = { path = "../cameras" , version = "0.3.1-nightly-2023-10-20" }
ambient_ecs = { path = "../ecs" , version = "0.3.1-nightly-2023-10-20" }
ambient_ui_native = { path = "../ui_native" , version = "0.3.1-nightly-2023-10-20" }
ambient_focus = { path = "../focus" , version = "0.3.1-nightly-2023-10-20" }
ambient_input = { path = "../input" , version = "0.3.1-nightly-2023-10-20" }
ambient_model = { path = "../model" , version = "0.3.1-nightly-2023-10-20" }
ambient_animation = { path = "../animation" , version = "0.3.1-nightly-2023-10-20" }
ambient_procedurals = { path = "../procedurals" , version = "0.3.1-nightly-2023-10-20" }
ambient_settings = { path = "../settings" , version = "0.3.1-nightly-2023-10-20" }

ambient_element = { path = "../../shared_crates/element" , version = "0.3.1-dev" }
ambient_element = { path = "../../shared_crates/element" , version = "0.3.1-nightly-2023-10-20" }

winit = { workspace = true }
flume = { workspace = true }
Expand All @@ -41,7 +41,7 @@ tracing = { workspace = true }
parking_lot = { workspace = true }

[dev-dependencies]
ambient_primitives = { path = "../primitives" , version = "0.3.1-dev" }
ambient_primitives = { path = "../primitives" , version = "0.3.1-nightly-2023-10-20" }

[features]
profile = ["puffin", "puffin_http", "profiling/profile-with-puffin"]
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.1-dev" }
ambient_sys = { path = "../sys" , version = "0.3.1-nightly-2023-10-20" }
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.1-dev" }
ambient_sys = { path = "../sys", version = "0.3.1-nightly-2023-10-20" }
flume = { workspace = true }
derive_more = { workspace = true }
thiserror = { workspace = true }
Expand All @@ -26,11 +26,11 @@ ordered-float = { workspace = true }
dashmap = { workspace = true }
derivative = { workspace = true }

ambient_ui_native = { path = "../ui_native" , version = "0.3.1-dev" }
ambient_ui_native = { path = "../ui_native" , version = "0.3.1-nightly-2023-10-20" }
cpal = "0.14.2"
lewton = "0.10.2"
hound = "3.5.0"
ambient_native_std = { path = "../native_std" , version = "0.3.1-dev" }
ambient_native_std = { path = "../native_std" , version = "0.3.1-nightly-2023-10-20" }
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.1-dev" }
ambient_ecs = { path = "../ecs" , version = "0.3.1-dev" }
ambient_core = { path = "../core" , version = "0.3.1-dev" }
ambient_element = { path = "../../shared_crates/element" , version = "0.3.1-dev" }
ambient_native_std = { path = "../native_std" , version = "0.3.1-nightly-2023-10-20" }
ambient_ecs = { path = "../ecs" , version = "0.3.1-nightly-2023-10-20" }
ambient_core = { path = "../core" , version = "0.3.1-nightly-2023-10-20" }
ambient_element = { path = "../../shared_crates/element" , version = "0.3.1-nightly-2023-10-20" }
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.1-dev" }
ambient_ecs = { path = "../ecs" , version = "0.3.1-dev" }
ambient_element = { path = "../../shared_crates/element" , version = "0.3.1-dev" }
ambient_input = { path = "../input" , version = "0.3.1-dev" }
ambient_network = { path = "../network/" , version = "0.3.1-dev" }
ambient_shared_types = { path = "../../shared_crates/shared_types/" , version = "0.3.1-dev" }
ambient_ui_native = { path = "../ui_native/" , version = "0.3.1-dev" }
ambient_layout = { path = "../layout/" , version = "0.3.1-dev" }
ambient_debugger = { path = "../debugger/" , version = "0.3.1-dev" }
ambient_core = { path = "../core" , version = "0.3.1-nightly-2023-10-20" }
ambient_ecs = { path = "../ecs" , version = "0.3.1-nightly-2023-10-20" }
ambient_element = { path = "../../shared_crates/element" , version = "0.3.1-nightly-2023-10-20" }
ambient_input = { path = "../input" , version = "0.3.1-nightly-2023-10-20" }
ambient_network = { path = "../network/" , version = "0.3.1-nightly-2023-10-20" }
ambient_shared_types = { path = "../../shared_crates/shared_types/" , version = "0.3.1-nightly-2023-10-20" }
ambient_ui_native = { path = "../ui_native/" , version = "0.3.1-nightly-2023-10-20" }
ambient_layout = { path = "../layout/" , version = "0.3.1-nightly-2023-10-20" }
ambient_debugger = { path = "../debugger/" , version = "0.3.1-nightly-2023-10-20" }

ambient_ecs_editor = { path = "../ecs_editor/" , version = "0.3.1-dev" }
ambient_ecs_editor = { path = "../ecs_editor/" , version = "0.3.1-nightly-2023-10-20" }

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.1-dev" }
ambient_native_std = { path = "../native_std", version = "0.3.1-dev" }
ambient_sys = { path = "../sys", version = "0.3.1-dev" }
ambient_asset_cache = { path = "../asset_cache/", version = "0.3.1-nightly-2023-10-20" }
ambient_native_std = { path = "../native_std", version = "0.3.1-nightly-2023-10-20" }
ambient_sys = { path = "../sys", version = "0.3.1-nightly-2023-10-20" }

anyhow = { workspace = true }
tracing = { 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.1-dev" }
ambient_sys = { path = "../sys" , version = "0.3.1-dev" }
ambient_native_std = { path = "../native_std" , version = "0.3.1-dev" }
ambient_gpu = { path = "../gpu" , version = "0.3.1-dev" }
ambient_gpu_ecs = { path = "../gpu_ecs" , version = "0.3.1-dev" }
ambient_ecs = { path = "../ecs" , version = "0.3.1-nightly-2023-10-20" }
ambient_sys = { path = "../sys" , version = "0.3.1-nightly-2023-10-20" }
ambient_native_std = { path = "../native_std" , version = "0.3.1-nightly-2023-10-20" }
ambient_gpu = { path = "../gpu" , version = "0.3.1-nightly-2023-10-20" }
ambient_gpu_ecs = { path = "../gpu_ecs" , version = "0.3.1-nightly-2023-10-20" }

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.1-dev" }
ambient_ecs = { path = "../ecs", version = "0.3.1-dev" }
ambient_native_std = { path = "../native_std", version = "0.3.1-dev" }
ambient_renderer = { path = "../renderer", version = "0.3.1-dev" }
ambient_core = { path = "../core", version = "0.3.1-dev" }
ambient_gizmos = { path = "../gizmos", version = "0.3.1-dev" }
ambient_rpc = { path = "../rpc", version = "0.3.1-dev" }
ambient_network = { path = "../network", version = "0.3.1-dev" }
ambient_sys = { path = "../sys", version = "0.3.1-dev" }
ambient_ui_native = { path = "../ui_native", version = "0.3.1-nightly-2023-10-20" }
ambient_ecs = { path = "../ecs", version = "0.3.1-nightly-2023-10-20" }
ambient_native_std = { path = "../native_std", version = "0.3.1-nightly-2023-10-20" }
ambient_renderer = { path = "../renderer", version = "0.3.1-nightly-2023-10-20" }
ambient_core = { path = "../core", version = "0.3.1-nightly-2023-10-20" }
ambient_gizmos = { path = "../gizmos", version = "0.3.1-nightly-2023-10-20" }
ambient_rpc = { path = "../rpc", version = "0.3.1-nightly-2023-10-20" }
ambient_network = { path = "../network", version = "0.3.1-nightly-2023-10-20" }
ambient_sys = { path = "../sys", version = "0.3.1-nightly-2023-10-20" }

ambient_std = { path = "../../shared_crates/std", version = "0.3.1-dev" }
ambient_element = { path = "../../shared_crates/element", version = "0.3.1-dev" }
ambient_std = { path = "../../shared_crates/std", version = "0.3.1-nightly-2023-10-20" }
ambient_element = { path = "../../shared_crates/element", version = "0.3.1-nightly-2023-10-20" }
ambient_shared_types = { path = "../../shared_crates/shared_types", features = [
"native",
], version = "0.3.1-dev" }
], version = "0.3.1-nightly-2023-10-20" }

glam = { workspace = true }
wgpu = { workspace = true }
Expand Down
24 changes: 12 additions & 12 deletions crates/decals/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ 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.1-dev" }
ambient_ecs = { path = "../ecs" , version = "0.3.1-dev" }
ambient_renderer = { path = "../renderer" , version = "0.3.1-dev" }
ambient_gpu = { path = "../gpu" , version = "0.3.1-dev" }
ambient_gpu_ecs = { path = "../gpu_ecs" , version = "0.3.1-dev" }
ambient_native_std = { path = "../native_std" , version = "0.3.1-dev" }
ambient_core = { path = "../core" , version = "0.3.1-dev" }
ambient_meshes = { path = "../meshes" , version = "0.3.1-dev" }
ambient_asset_cache = { path = "../asset_cache" , version = "0.3.1-nightly-2023-10-20" }
ambient_ecs = { path = "../ecs" , version = "0.3.1-nightly-2023-10-20" }
ambient_renderer = { path = "../renderer" , version = "0.3.1-nightly-2023-10-20" }
ambient_gpu = { path = "../gpu" , version = "0.3.1-nightly-2023-10-20" }
ambient_gpu_ecs = { path = "../gpu_ecs" , version = "0.3.1-nightly-2023-10-20" }
ambient_native_std = { path = "../native_std" , version = "0.3.1-nightly-2023-10-20" }
ambient_core = { path = "../core" , version = "0.3.1-nightly-2023-10-20" }
ambient_meshes = { path = "../meshes" , version = "0.3.1-nightly-2023-10-20" }
tracing = { workspace = true }
glam = { workspace = true }

[dev-dependencies]
ambient_app = { path = "../app" , version = "0.3.1-dev" }
ambient_element = { path = "../../shared_crates/element" , version = "0.3.1-dev" }
ambient_primitives = { path = "../primitives" , version = "0.3.1-dev" }
ambient_cameras = { path = "../cameras" , version = "0.3.1-dev" }
ambient_app = { path = "../app" , version = "0.3.1-nightly-2023-10-20" }
ambient_element = { path = "../../shared_crates/element" , version = "0.3.1-nightly-2023-10-20" }
ambient_primitives = { path = "../primitives" , version = "0.3.1-nightly-2023-10-20" }
ambient_cameras = { path = "../cameras" , version = "0.3.1-nightly-2023-10-20" }
env_logger = { workspace = true }

[features]
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.1-dev" }
ambient_package = { path = "../../shared_crates/package" , version = "0.3.1-dev" }
ambient_std = { path = "../../shared_crates/std" , version = "0.3.1-dev" }
ambient_sys = { path = "../sys" , version = "0.3.1-dev" }
ambient_native_std = { path = "../native_std" , version = "0.3.1-nightly-2023-10-20" }
ambient_package = { path = "../../shared_crates/package" , version = "0.3.1-nightly-2023-10-20" }
ambient_std = { path = "../../shared_crates/std" , version = "0.3.1-nightly-2023-10-20" }
ambient_sys = { path = "../sys" , version = "0.3.1-nightly-2023-10-20" }

anyhow = { workspace = true }
flume = { workspace = true }
Expand Down
12 changes: 6 additions & 6 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.1-dev" }
ambient_native_std = { path = "../native_std" , version = "0.3.1-dev" }
ambient_shared_types = { path = "../../shared_crates/shared_types", features = ["native"] , version = "0.3.1-dev" }
ambient_package_rt = { path = "../../shared_crates/package_rt" , version = "0.3.1-dev" }
ambient_sys = { path = "../sys", version = "0.3.1-nightly-2023-10-20" }
ambient_native_std = { path = "../native_std" , version = "0.3.1-nightly-2023-10-20" }
ambient_shared_types = { path = "../../shared_crates/shared_types", features = ["native"] , version = "0.3.1-nightly-2023-10-20" }
ambient_package_rt = { path = "../../shared_crates/package_rt" , version = "0.3.1-nightly-2023-10-20" }

as-any = { workspace = true }
itertools = { workspace = true }
Expand All @@ -38,8 +38,8 @@ byteorder = { workspace = true }
erased-serde = "0.3"

[build-dependencies]
ambient_package_macro_common = { path = "../../shared_crates/package_macro_common" , version = "0.3.1-dev" }
ambient_sys = { path = "../sys", version = "0.3.1-dev" }
ambient_package_macro_common = { path = "../../shared_crates/package_macro_common" , version = "0.3.1-nightly-2023-10-20" }
ambient_sys = { path = "../sys", version = "0.3.1-nightly-2023-10-20" }

[dev-dependencies]
bincode = { workspace = true }
18 changes: 9 additions & 9 deletions crates/ecs_editor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ 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.1-dev" }
ambient_native_std = { path = "../native_std" , version = "0.3.1-dev" }
ambient_ui_native = { path = "../ui_native" , version = "0.3.1-dev" }
ambient_layout = { path = "../layout" , version = "0.3.1-dev" }
ambient_core = { path = "../core" , version = "0.3.1-dev" }
ambient_element = { path = "../../shared_crates/element" , version = "0.3.1-dev" }
ambient_renderer = { path = "../renderer" , version = "0.3.1-dev" }
ambient_ecs = { path = "../ecs" , version = "0.3.1-nightly-2023-10-20" }
ambient_native_std = { path = "../native_std" , version = "0.3.1-nightly-2023-10-20" }
ambient_ui_native = { path = "../ui_native" , version = "0.3.1-nightly-2023-10-20" }
ambient_layout = { path = "../layout" , version = "0.3.1-nightly-2023-10-20" }
ambient_core = { path = "../core" , version = "0.3.1-nightly-2023-10-20" }
ambient_element = { path = "../../shared_crates/element" , version = "0.3.1-nightly-2023-10-20" }
ambient_renderer = { path = "../renderer" , version = "0.3.1-nightly-2023-10-20" }
env_logger = { workspace = true }
itertools = { workspace = true }
glam = { workspace = true }

[dev-dependencies]
ambient_app = { path = "../app", features = ["profile"] , version = "0.3.1-dev" }
ambient_cameras = { path = "../cameras" , version = "0.3.1-dev" }
ambient_app = { path = "../app", features = ["profile"] , version = "0.3.1-nightly-2023-10-20" }
ambient_cameras = { path = "../cameras" , version = "0.3.1-nightly-2023-10-20" }
tokio = { workspace = true }
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.1-dev" }
ambient_ecs = { path = "../ecs" , version = "0.3.1-nightly-2023-10-20" }
winit = { workspace = true }
2 changes: 1 addition & 1 deletion crates/git_rev_init/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ repository = "https://github.com/AmbientRun/Ambient"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ambient_git_rev = { path = "../git_rev", version = "0.3.1-dev" }
ambient_git_rev = { path = "../git_rev", version = "0.3.1-nightly-2023-10-20" }
Loading

0 comments on commit 3ae08ca

Please sign in to comment.