# 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 = "burster" version = "0.1.1" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Lightweight stack allocated rate limiter implementations" documentation = "https://docs.rs/burster" readme = "README.md" keywords = [ "token_bucket", "rate_limiting", "networking", "no_std", ] categories = [ "no-std", "no-std::no-alloc", "algorithms", ] license = "MIT" repository = "https://github.com/jmlepisto/burster" [lib] name = "burster" path = "src/lib.rs" [[example]] name = "fixed_window" path = "examples/fixed_window.rs" [[example]] name = "sliding_window_counter" path = "examples/sliding_window_counter.rs" [[example]] name = "sliding_window_log" path = "examples/sliding_window_log.rs" [[example]] name = "token_bucket" path = "examples/token_bucket.rs" [dependencies.rustversion] version = "1.0.18" [dev-dependencies.rand] version = "0.8.5" [features] default = ["std"] std = []