-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) · 961 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (33 loc) · 961 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
28
29
30
31
32
33
34
35
36
37
38
[workspace]
members = [
"owm-problem",
]
[package]
name = "owm"
version = "0.1.0"
edition = "2021"
authors = ["Justin Lovinger"]
description = "An experimental River layout generator using mathematical optimization to invent layouts on-the-fly"
repository = "https://github.com/justinlovinger/owm"
readme = "README.md"
keywords = ["optimization", "river", "window-manager"]
categories = ["command-line-utilities"]
license = "MIT"
[profile.dev]
# Generating layouts is significantly slower than compiling.
opt-level = 3
[profile.test]
opt-level = 0
[dependencies]
clap = { version = "4.3.21", features = ["derive"] }
once_cell = "1.18.0"
optimal = { git = "https://github.com/justinlovinger/optimal-rs.git", branch = "master" }
owm-problem = { path = "owm-problem", version = "0.1.0" }
rand = "0.8.5"
rand_xoshiro = "0.6.0"
rayon = "1.7.0"
wayland-client = "0.30.2"
wayland-scanner = "0.30.1"
[dev-dependencies]
proptest = "1.2.0"
test-strategy = "0.3.1"