-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 828 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "rust_wave_simulation_2d"
version = "1.2.4-beta"
edition = "2024"
authors = ["Wiktor Słowik"]
description = "Interactive real-time 2D acoustic wave simulator for physics education, built with Rust and egui"
license = "LicenseRef-Proprietary"
repository = "https://github.com/Ciwiruk/rust_wave_simulation_2d"
keywords = ["wave", "simulation", "physics", "fdtd", "egui"]
categories = ["science", "simulation", "gui"]
[dependencies]
eframe = "0.33.3"
egui = "0.33.3"
rayon = "1.11"
sysinfo = "0.38.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
rfd = "0.17.2"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.62.2", features = ["Win32_System_ProcessStatus", "Win32_System_Threading", "Win32_Foundation"] }
[profile.dev]
opt-level = 3
lto = true
codegen-units = 1