| # 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.81.0" |
| name = "flyweights" |
| version = "0.1.5" |
| authors = [ |
| "adamperry@google.com", |
| "dkoloski@google.com", |
| ] |
| build = false |
| exclude = [ |
| "CODE_OF_CONDUCT.md", |
| "CONTRIBUTING.md", |
| ] |
| autolib = false |
| autobins = false |
| autoexamples = false |
| autotests = false |
| autobenches = false |
| description = "Interned strings & bytestrings for client-controlled values in long-lived programs." |
| readme = "README.md" |
| keywords = [ |
| "string", |
| "intern", |
| "caching", |
| "memory", |
| "utility", |
| ] |
| categories = [ |
| "caching", |
| "rust-patterns", |
| ] |
| license = "BSD-2-Clause" |
| repository = "https://github.com/google/flyweights" |
| |
| [features] |
| default = [] |
| json_schema = ["schemars"] |
| |
| [lib] |
| name = "flyweights" |
| path = "src/lib.rs" |
| |
| [[bench]] |
| name = "basic" |
| path = "benches/basic.rs" |
| harness = false |
| |
| [dependencies.ahash] |
| version = "0.8" |
| |
| [dependencies.bstr] |
| version = "1.5" |
| features = ["std"] |
| default-features = false |
| |
| [dependencies.byteorder] |
| version = "1.5" |
| |
| [dependencies.schemars] |
| version = "0.8" |
| optional = true |
| |
| [dependencies.serde] |
| version = "1" |
| optional = true |
| |
| [dependencies.static_assertions] |
| version = "1.1" |
| |
| [dev-dependencies.criterion] |
| version = "0.6" |
| |
| [dev-dependencies.serde_json] |
| version = "1" |
| |
| [dev-dependencies.serial_test] |
| version = "0.5" |
| |
| [dev-dependencies.test-case] |
| version = "3.2" |