sketchrs/Cargo.toml

35 lines
979 B
TOML
Raw Permalink Normal View History

2022-05-22 00:13:30 -07:00
[package]
name = "sketchrs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-05-01 17:57:17 -07:00
argmin = { version = "0.8.1", features = [] }
2023-05-08 11:11:23 -07:00
argmin-math = { version = "0.3.0", features = ["nalgebra_v0_32"] }
2023-05-01 17:57:17 -07:00
bevy_ecs = "0.10.1"
2025-02-07 10:28:34 -08:00
eframe = { version = "0.21.3", default-features = false, features = ["default_fonts", "glow"] }
2022-05-22 00:13:30 -07:00
indexmap = "1.8.1"
2023-05-01 17:57:17 -07:00
levenberg-marquardt = "0.13.0"
2023-05-07 21:12:58 -07:00
nalgebra = { version = "0.32.0", features = ["rand"] }
2023-05-01 17:57:17 -07:00
nalgebra-sparse = "0.9.0"
2022-05-22 00:13:30 -07:00
nohash-hasher = "0.2.0"
2023-05-07 21:12:58 -07:00
rand = "0.8.5"
rand_distr = "0.4.3"
2025-02-07 10:28:34 -08:00
slotmap = "1.0.6"
tracing = "0.1.37"
2023-05-08 11:11:23 -07:00
tracing-chrome = { version = "0.7.1", optional = true }
tracing-error = { version = "0.2.0", optional = true }
2025-02-07 10:28:34 -08:00
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
2022-05-22 00:13:30 -07:00
[dev-dependencies]
2023-05-01 17:57:17 -07:00
criterion = "0.4.0"
2022-05-22 00:13:30 -07:00
2023-05-08 11:11:23 -07:00
[features]
2025-02-07 10:28:34 -08:00
trace = ["tracing-chrome", "tracing-error", "bevy_ecs/trace"]
[[bench]]
name = "my_benchmark"
harness = false