Skip to content

Commit

Permalink
add fluid_sim
Browse files Browse the repository at this point in the history
  • Loading branch information
trevyn committed Aug 6, 2024
1 parent 454c66f commit 2216b31
Show file tree
Hide file tree
Showing 14 changed files with 2,192 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
.godot/
android/
.vscode/
addons/
addons/
Cargo.lock
47 changes: 47 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[package]
edition = "2021"
name = "soto"
publish = false
version = "0.1.0"

[dependencies]
bytemuck = {version = "1.16", features = ["derive"]}
egui = "0.28"
egui-wgpu = "0.28"
egui-winit = "0.28"
flume = "0.11"
glam = "0.28"
glass = {git = "https://github.com/trevyn/glass", branch = "hack"}
image = "0.25"
indexmap = "2.2"
log = "0.4"
notify = "6.1"
path-clean = "1.0.1"
pollster = "0.3"
wgpu = {version = "22.1.0", default-features = true, features = ["naga-ir"]}
winit = "0.29"
winit_input_helper = "0.16"

[patch.crates-io]
egui = {git = "https://github.com/trevyn/egui", branch = "multiclick-text-select"}
egui-wgpu = {git = "https://github.com/trevyn/egui", branch = "multiclick-text-select"}
egui-winit = {git = "https://github.com/trevyn/egui", branch = "multiclick-text-select"}
# egui_demo_lib = {git = "https://github.com/trevyn/egui", branch = "multiclick-text-select"}
# egui_extras = {git = "https://github.com/trevyn/egui", branch = "multiclick-text-select"}
# egui_plot = {git = "https://github.com/trevyn/egui", branch = "multiclick-text-select"}

# [dev-dependencies]
# egui_demo_lib = {version = "0.28"}
# rand = "0.8"
# rapier2d = {version = "0.22.0", features = ["default", "debug-render"]}
# winit_input_helper = "0.16"

# [lints.clippy]
# blocks_in_conditions = "allow"
# field_reassign_with_default = "allow"

[profile.dev]
opt-level = 3

[profile.dev.package."*"]
opt-level = 3
Loading

0 comments on commit 2216b31

Please sign in to comment.