[dependencies.num-bigint]
version = "0.4"
[dependencies.num-rational]
version = "0.4"
[dependencies.num-traits]
version = "0.2"
[[example]]
name = "basic"
path = "examples/basic.rs"
[lib]
name = "groebner"
path = "src/lib.rs"
[lints.clippy]
collapsible_match = "warn"
empty_drop = "warn"
empty_structs_with_brackets = "warn"
exit = "warn"
expect_used = "warn"
get_unwrap = "warn"
manual_let_else = "warn"
match_bool = "warn"
match_ref_pats = "warn"
match_same_arms = "warn"
match_single_binding = "warn"
needless_bool = "deny"
needless_continue = "warn"
needless_late_init = "warn"
needless_match = "warn"
needless_pass_by_value = "warn"
panic = "deny"
rc_buffer = "warn"
rc_mutex = "warn"
redundant_else = "warn"
redundant_guards = "warn"
redundant_pattern = "warn"
redundant_pattern_matching = "warn"
rest_pat_in_fully_bound_structs = "warn"
single_match = "warn"
single_match_else = "warn"
too_many_arguments = "warn"
too_many_lines = "warn"
unwrap_used = "deny"
[lints.rust]
dead_code = "warn"
unreachable_pub = "warn"
unsafe_code = "warn"
[package]
authors = ["Stephen Diehl"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["science", "mathematics"]
description = "A Rust library implementing Groebner basis algorithms"
documentation = "https://docs.rs/groebner"
edition = "2021"
exclude = [".github/**/*"]
homepage = "https://github.com/sdiehl/groebner"
include = ["src/**/*", "examples/**/*", "tests/**/*", "benches/**/*", "README.md", "LICENSE", "Cargo.toml"]
keywords = ["mathematics", "algebra", "polynomial", "groebner", "basis"]
license = "MIT"
name = "groebner"
readme = "README.md"
repository = "https://github.com/sdiehl/groebner"
rust-version = "1.70.0"
version = "0.1.1"
[[test]]
name = "test_gm"
path = "tests/test_gm.rs"
[[test]]
name = "test_groebner"
path = "tests/test_groebner.rs"
[[test]]
name = "test_sugar"
path = "tests/test_sugar.rs"