52 lines
1.3 KiB
TOML
52 lines
1.3 KiB
TOML
# 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 = "2018"
|
|
rust-version = "1.65"
|
|
name = "hashlink"
|
|
version = "0.10.0"
|
|
authors = ["kyren <kerriganw@gmail.com>"]
|
|
description = "HashMap-like containers that hold their key-value pairs in a user controllable order"
|
|
documentation = "https://docs.rs/hashlink"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"data-structures",
|
|
"no_std",
|
|
]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/kyren/hashlink"
|
|
|
|
[dependencies.hashbrown]
|
|
version = "0.15"
|
|
features = [
|
|
"default-hasher",
|
|
"inline-more",
|
|
]
|
|
default-features = false
|
|
|
|
[dependencies.serde]
|
|
version = "1.0"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dev-dependencies.rustc-hash]
|
|
version = "2"
|
|
|
|
[dev-dependencies.serde_test]
|
|
version = "1.0"
|
|
|
|
[features]
|
|
serde_impl = ["serde"]
|
|
|
|
[badges.circle-ci]
|
|
branch = "master"
|
|
repository = "kyren/hashlink"
|