android13/external/rust/crates/weak-table/Cargo.toml.orig

25 lines
550 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[package]
name = "weak-table"
version = "0.3.2"
authors = ["Jesse A. Tov <jesse.tov@gmail.com>"]
description = "Weak hash maps and sets"
repository = "https://github.com/tov/weak-table-rs"
readme = "README.md"
license = "MIT"
keywords = ["containers", "Rc", "Arc", "weak", "no_std"]
edition = "2018"
[dependencies]
ahash = { version = "0.7.6", optional = true, features = [] }
[dev-dependencies]
quickcheck = "1"
rand = "0.8.4"
[features]
default = ["std"]
std = []
# This feature doesnt actually do anything. TODO: remove in v0.4.
alloc = []