-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 865 Bytes
/
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
[package]
name = "algebra-structs"
version = "0.0.1"
edition = "2021"
authors = ["uni <[email protected]>"]
description = "Implementation of computational algebra, for example, group theory and ring theory."
repository = "https://github.com/uniwuni/algebra-structs"
license = "GPL-3.0-or-later"
keywords = ["math","algebra","groups","rings"]
categories = ["mathematics"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bimap = "0.6.3"
itertools = "0.12.1"
num = "0.4.1"
num-traits = "0.2"
proptest = "1.4.0"
rand = "0.8"
[lints.clippy]
pedantic = "warn"
nursery = "warn"
cargo = "warn"
assertions_on_result_states = "warn"
module_name_repetitions = "allow"
type_complexity = "allow"
redundant_clone = "allow"
[profile.release]
debug = true
[features]
intensive_test = []