forked from chris-morgan/anymap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
23 lines (20 loc) · 947 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "anymap3"
version = "1.0.1"
authors = ["Olivier 'reivilibre' (fork maintainer) <[email protected]>", "Chris Morgan (original author) <[email protected]>"]
edition = "2018"
rust-version = "1.36"
description = "A safe and convenient store for one value of each type"
repository = "https://github.com/reivilibre/anymap3"
keywords = ["container", "any", "map"]
categories = ["rust-patterns", "data-structures", "no-std"]
license = "BlueOak-1.0.0 OR MIT OR Apache-2.0"
include = ["/README.md", "/COPYING", "/CHANGELOG.md", "/src"]
[package.metadata.docs.rs]
all-features = true
[features]
default = ["std"]
std = []
[dependencies]
# The hashbrown feature, disabled by default, is exposed under different stability guarantees than the usual SemVer ones: by preference the version range will only be extended, but it may be shrunk in a MINOR release. See README.md.
hashbrown = { version = ">=0.1.1, <0.16", optional = true }