groebner 0.1.2

A Rust library implementing Groebner basis algorithms
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.70.0"
name = "groebner"
version = "0.1.2"
authors = ["Stephen Diehl"]
build = false
exclude = [".github/**/*"]
include = [
    "src/**/*",
    "examples/**/*",
    "tests/**/*",
    "benches/**/*",
    "README.md",
    "LICENSE",
    "Cargo.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library implementing Groebner basis algorithms"
homepage = "https://github.com/sdiehl/groebner"
documentation = "https://docs.rs/groebner"
readme = "README.md"
keywords = [
    "mathematics",
    "algebra",
    "polynomial",
    "groebner",
    "basis",
]
categories = [
    "science",
    "mathematics",
]
license = "MIT"
repository = "https://github.com/sdiehl/groebner"

[lib]
name = "groebner"
path = "src/lib.rs"

[[example]]
name = "basic"
path = "examples/basic.rs"

[[test]]
name = "test_gm"
path = "tests/test_gm.rs"

[[test]]
name = "test_groebner"
path = "tests/test_groebner.rs"

[[test]]
name = "test_ring"
path = "tests/test_ring.rs"

[[test]]
name = "test_stress"
path = "tests/test_stress.rs"

[[test]]
name = "test_sugar"
path = "tests/test_sugar.rs"

[dependencies.num-bigint]
version = "0.5"

[dependencies.num-rational]
version = "0.4"

[dependencies.num-traits]
version = "0.2"

[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"