-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update bevy, rapier, parry, nalgebra
- Loading branch information
Showing
21 changed files
with
212 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "salva2d" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
authors = [ "Sébastien Crozet <[email protected]>" ] | ||
description = "2-dimensional particle-based fluid dynamics in Rust." | ||
documentation = "https://salva.rs/docs" | ||
|
@@ -10,7 +10,7 @@ readme = "README.md" | |
categories = [ "science", "game-development", "mathematics", "simulation", "wasm"] | ||
keywords = [ "physics", "dynamics", "particles", "fluids", "SPH" ] | ||
license = "Apache-2.0" | ||
edition = "2018" | ||
edition = "2021" | ||
|
||
[badges] | ||
maintenance = { status = "actively-developed" } | ||
|
@@ -33,25 +33,24 @@ path = "../../src/lib.rs" | |
required-features = [ "dim2" ] | ||
|
||
[dependencies] | ||
approx = "0.4" | ||
approx = "0.5" | ||
num-traits = "0.2" | ||
fnv = "1.0" | ||
itertools = "0.10" | ||
itertools = "0.12" | ||
generational-arena = "0.2" | ||
instant = { version = "0.1", features = [ "now" ] } | ||
rayon = { version = "1.5", optional = true } | ||
rayon = { version = "1.8", optional = true } | ||
|
||
nalgebra = "0.29" | ||
parry2d = { version = "0.7", optional = true } | ||
rapier2d = { version = "0.11", optional = true } | ||
rapier_testbed2d = { version = "0.11", optional = true } | ||
nalgebra = "0.32" | ||
parry2d = { version = "0.13", optional = true } | ||
rapier2d = { version = "0.17", optional = true } | ||
rapier_testbed2d = { version = "0.17", optional = true } | ||
|
||
bevy_egui = { version = "0.5", optional = true } | ||
bevy_egui = { version = "0.23", features = ["immutable_ctx"], optional = true } | ||
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
bevy = { version = "0.5", default-features = false, features = ["bevy_wgpu", "bevy_winit", "render", "x11"], optional = true } | ||
bevy = { version = "0.12.1", default-features = false, features = ["bevy_winit", "bevy_render", "x11"], optional = true } | ||
|
||
# Dependencies for WASM only. | ||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
bevy = { version = "0.5", default-features = false, features = ["bevy_winit", "render"], optional = true } | ||
bevy_webgl2 = { version = "0.5", optional = true } | ||
bevy = { version = "0.12", default-features = false, features = ["bevy_winit", "bevy_render"], optional = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "salva3d" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
authors = [ "Sébastien Crozet <[email protected]>" ] | ||
description = "3-dimensional particle-based fluid dynamics in Rust." | ||
documentation = "https://salva.rs/rustdoc/salva3d/index.html" | ||
|
@@ -9,7 +9,7 @@ repository = "https://github.com/dimforge/salva" | |
readme = "README.md" | ||
keywords = [ "physics", "dynamics", "particles", "fluids", "SPH" ] | ||
license = "Apache-2.0" | ||
edition = "2018" | ||
edition = "2021" | ||
|
||
[features] | ||
default = [ "dim3" ] | ||
|
@@ -29,26 +29,24 @@ path = "../../src/lib.rs" | |
required-features = [ "dim3" ] | ||
|
||
[dependencies] | ||
approx = "0.4" | ||
approx = "0.5" | ||
num-traits = "0.2" | ||
fnv = "1.0" | ||
itertools = "0.10" | ||
itertools = "0.12" | ||
generational-arena = "0.2" | ||
instant = { version = "0.1", features = [ "now" ] } | ||
rayon = { version = "1.5", optional = true } | ||
rayon = { version = "1.8", optional = true } | ||
|
||
nalgebra = "0.29" | ||
parry3d = { version = "0.7", optional = true } | ||
rapier3d = { version = "0.11", optional = true } | ||
rapier_testbed3d = { version = "0.11", optional = true } | ||
nalgebra = "0.32" | ||
parry3d = { version = "0.13", optional = true } | ||
rapier3d = { version = "0.17", optional = true } | ||
rapier_testbed3d = { version = "0.17", optional = true } | ||
|
||
bevy_egui = { version = "0.5", optional = true } | ||
bevy_egui = { version = "0.23", features = ["immutable_ctx"], optional = true } | ||
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
bevy = { version = "0.5", default-features = false, features = ["bevy_wgpu", "bevy_winit", "render", "x11"], optional = true } | ||
bevy = { version = "0.12", default-features = false, features = ["bevy_winit", "bevy_render", "x11"], optional = true } | ||
|
||
# Dependencies for WASM only. | ||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
bevy = { version = "0.5", default-features = false, features = ["bevy_winit", "render"], optional = true } | ||
bevy_webgl2 = { version = "0.5", optional = true } | ||
|
||
bevy = { version = "0.12", default-features = false, features = ["bevy_winit", "bevy_render"], optional = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.