Archived
1
0
Fork 0
This repository has been archived on 2024-06-16. You can view files and clone it, but cannot push or open issues or pull requests.
pivot-saw/Cargo.toml
2023-08-02 17:38:44 +02:00

28 lines
569 B
TOML

[workspace]
members = [
"crates/*",
]
[workspace.package]
version = "0.0.1"
authors = ["Mo Bitar <mo8it@proton.me>"]
edition = "2021"
license = "AGPL-3.0"
[package]
name = "pivot-saw"
description = "Self-avoiding walk with the pivot algorithm"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
nalgebra = { version = "0.32.3", default-features = false, features = ["std"] }
rand = { version = "0.8.5", features = ["small_rng"] }
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3