-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
76 lines (68 loc) · 2.03 KB
/
Cargo.toml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
name = "cgt"
version = "0.6.0"
edition = "2021"
authors = ["Tomasz Maciosowski <t4ccer@gmail.com>"]
license = "AGPL-3.0"
readme = "README.md"
repository = "https://github.com/t4ccer/cgt-tools"
description = "Combinatorial Game Theory framework"
homepage = "https://github.com/t4ccer/cgt-tools"
keywords = ["cgt"]
categories = ["mathematics", "science"]
documentation = "https://docs.rs/cgt"
[lints]
workspace = true
[dependencies]
ahash = "0.8"
append-only-vec = "0.1"
auto_ops = "0.3"
num-rational = { version = "0.4", default-features = false, features = ["std"]}
serde = { version = "1.0", optional = true, features = ["derive"]}
serde_repr = { version = "0.1", optional = true}
cgt_derive = { version = "0.6.0", path = "./cgt_derive"}
rayon = {version = "1.10", optional = true}
dashmap = { version = "6.1", features = ["inline"] }
rand = "0.8"
mint = "0.5"
[dev-dependencies]
quickcheck = { version = "1.0", default-features = false }
[features]
default = []
serde = ["dep:serde", "dep:serde_repr", "num-rational/serde"]
rayon = ["dep:rayon"]
[lib]
path = "./cgt/lib.rs"
[workspace]
members = ["cgt_cli", "cgt_py", "cgt_derive", "cgt_gui"]
exclude = ["vendor"]
[profile.release]
lto = true
panic = "abort"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
new_without_default = "allow"
similar_names = "allow"
must_use_candidate = "allow"
cast_lossless = "allow"
cast_possible_wrap = "allow"
cast_sign_loss = "allow"
cast_possible_truncation = "allow"
module_name_repetitions = "allow"
uninlined_format_args = "allow"
too_many_lines = "allow"
cognitive_complexity = "allow"
needless_update = "allow"
cast_precision_loss = "allow"
missing_panics_doc = "allow"
use_self = "allow"
inline_always = "allow"
too_many_arguments = "allow"
fn_params_excessive_bools = "allow"
single_match_else = "allow"
too_long_first_doc_paragraph = "allow"
should_panic_without_expect = "allow"
multiple_crate_versions = "allow"