sketchrs/Cargo.toml

24 lines
570 B
TOML
Raw 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-07 21:12:58 -07:00
argmin-math = { version = "0.3.0", features = ["latest_all"] }
2023-05-01 17:57:17 -07:00
bevy_ecs = "0.10.1"
2023-05-07 21:12:58 -07:00
eframe = { version = "0.21.3" }
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"
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