# 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" name = "rseven-splitter" version = "0.1.0" authors = ["Your Name "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A Rust crate for evenly splitting a total number into batches, with customizable maximum batch size." readme = "README.md" keywords = [ "split", "partition", "distribute", "batch", "even", ] categories = [ "algorithms", "mathematics", ] license = "MIT" repository = "https://github.com/aeromilai/rseven-splitter" [lib] name = "rseven_splitter" path = "src/lib.rs" [[example]] name = "basic_usage" path = "examples/basic_usage.rs" [[test]] name = "integration_tests" path = "tests/integration_tests.rs" [[bench]] name = "even_split_benchmark" path = "benches/even_split_benchmark.rs" harness = false [dependencies] [dev-dependencies.criterion] version = "0.3"