-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (33 loc) · 720 Bytes
/
Cargo.toml
File metadata and controls
42 lines (33 loc) · 720 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
39
40
41
[package]
name = "rucos"
version = "0.1.0"
edition = "2021"
rust-version = "1.74"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
#[target."cfg(windows)".dependencies.winapi]
#version = "0.3.5"
#features = ["processthreadsapi", "minwindef"]
#[profile.release]
#codegen-units = 1
#[profile.release]
#lto = false
#codegen-units = 1
#[build]
#rustflags = ["-C", "target-cpu=native"]
[dependencies]
rand = "*"
comfy-table = "*"
#cpu-time = "*"
[[bench]]
name = "rucos_benches"
path = "benches/lib.rs"
test = true
[lib]
name = "rucos"
path = "src/lib.rs"
[[example]]
name = "rucos_examples"
path = "examples/lib.rs"
[[test]]
name = "rucos_test"
path = "tests/lib.rs"