Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ information = { path = "crates/information" }
matter = { path = "crates/matter" }
utils = { path = "crates/utils" }

bevy = { version = "0.17", features = ["dynamic_linking"] }
bevy = { version = "0.18", features = ["dynamic_linking"] }

glam = "0.29.2"

Expand Down
2 changes: 1 addition & 1 deletion crates/energy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ edition = "2024"
description = "Core systems governing how energy manifests, transforms and flows."

[dependencies]
bevy = "0.17"
bevy = "0.18"
utils = { path = "../utils" }
2 changes: 1 addition & 1 deletion crates/forces/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2024"
description = "Fundamental interaction mechanisms that create relationships between entities and drive dynamic behaviors across scales."

[dependencies]
bevy = "0.17"
bevy = "0.18"
2 changes: 1 addition & 1 deletion crates/information/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "Systems handling pattern emergence, complexity formation, and the

[dependencies]

bevy = "0.17"
bevy = "0.18"



Expand Down
172 changes: 172 additions & 0 deletions crates/lp_tree.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,172 @@
Folder PATH listing for volume Acer
Volume serial number is 407F-56DF
C:.
| lp_tree.txt
|
+---energy
| | Cargo.toml
| | README.md
| |
| \---src
| | conservation.rs
| | lib.rs
| |
| +---electromagnetism
| | fields.rs
| | interactions.rs
| | mod.rs
| |
| +---thermodynamics
| | entropy.rs
| | equilibrium.rs
| | mod.rs
| | thermal.rs
| |
| \---waves
| mod.rs
| oscillation.rs
| propagation.rs
| superposition.rs
| wave_equation.rs
|
+---forces
| | Cargo.toml
| | README.md
| |
| \---src
| | lib.rs
| |
| \---core
| gravity.rs
| mod.rs
| newton_laws.rs
|
+---information
| | Cargo.toml
| | README.md
| |
| \---src
| | lib.rs
| |
| +---fractals
| | core.rs
| | data_loader.rs
| | fractals.json
| | generator.rs
| | grammar.rs
| | interpreter.rs
| | mod.rs
| | renderer.rs
| |
| \---measures
| | divergence.rs
| | mod.rs
| | shannon.rs
| |
| \---mutual
| calculation.rs
| mod.rs
|
+---matter
| | Cargo.toml
| | README.md
| |
| \---src
| | lib.rs
| | mod.rs
| |
| \---states
| | mod.rs
| |
| +---fluids
| | mod.rs
| | solver.rs
| |
| +---gases
| | mod.rs
| |
| +---plasma
| | mod.rs
| |
| \---solids
| mod.rs
|
+---systems
| | Cargo.toml
| | README.md
| |
| +---acoustics
| | | Cargo.toml
| | |
| | \---src
| | lib.rs
| |
| +---ai
| | | Cargo.toml
| | | README.md
| | |
| | \---src
| | | lib.rs
| | |
| | +---arbiter
| | | mod.rs
| | |
| | +---drives
| | | mod.rs
| | | needs.rs
| | |
| | +---memory
| | | mod.rs
| | | types.rs
| | |
| | +---personality
| | | mod.rs
| | | traits.rs
| | |
| | +---relationships
| | | mod.rs
| | | social.rs
| | |
| | \---trackers
| | electric_tracker.rs
| | entity_tracker.rs
| | mod.rs
| | needs_tracker.rs
| | perception_tracker.rs
| | prey_tracker.rs
| | thermal_tracker.rs
| | threat_tracker.rs
| |
| +---mpm
| | | Cargo.toml
| | |
| | \---src
| | grid.rs
| | lib.rs
| | particle.rs
| | solver.rs
| | transfer.rs
| |
| +---save_system
| | | Cargo.toml
| | |
| | \---src
| | lib.rs
| | save_system.rs
| | versioning.rs
| |
| \---src
| lib.rs
|
\---utils
| Cargo.toml
| README.md
|
\---src
| lib.rs
| pool.rs
|
\---spatial
grid.rs
mod.rs

2 changes: 1 addition & 1 deletion crates/matter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2024"
description = "Physical substance modeling from fundamental particles to complex materials, defining how tangible elements behave and interact."

[dependencies]
bevy = "0.17"
bevy = "0.18"
2 changes: 1 addition & 1 deletion crates/systems/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2024"
description = "Core simulation infrastructure components that manage and support the virtual universe rather than represent parts of it."

[dependencies]
bevy = "0.17"
bevy = "0.18"
save_system = { path = "./save_system" }
mpm = { path = "./mpm" }
acoustics = { path = "./acoustics" }
Expand Down
2 changes: 1 addition & 1 deletion crates/systems/acoustics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2024"
description = "Sound generation, playback, and spatial processing system for ambient and interactive audio experiences."

[dependencies]
bevy = "0.17"
bevy = "0.18"
2 changes: 1 addition & 1 deletion crates/systems/ai/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description = "Utility-based AI framework for life form simulation with modular
doctest = false

[dependencies]
bevy = "0.17"
bevy = "0.18"
rand = "0.9"
energy = { path = "../../energy" }

Expand Down
2 changes: 1 addition & 1 deletion crates/systems/mpm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2024"
description = "Material Point Method implementation for simulating continuous materials"

[dependencies]
bevy = "0.17"
bevy = "0.18"
2 changes: 1 addition & 1 deletion crates/systems/save_system/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ description = "Framework for preserving and restoring simulation states across s
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bevy = "0.17"
bevy = "0.18"
platform-dirs = "0.3"
2 changes: 1 addition & 1 deletion crates/utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2024"
description = "Shared utility structures and algorithms for the LP ecosystem."

[dependencies]
bevy = "0.17"
bevy = "0.18"
Loading
Loading