File: Cargo.toml

package info (click to toggle)
rust-hashbag 0.1.12-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 228 kB
  • sloc: makefile: 12; sh: 1
file content (24 lines) | stat: -rw-r--r-- 582 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "hashbag"
version = "0.1.12"
authors = ["Jon Gjengset <jon@thesquareplanet.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

readme = "README.md"
description = "An unordered multiset implementation using a hash bag"
repository = "https://github.com/jonhoo/hashbag.git"

keywords = ["bag","multiset","set"]
categories = ["data-structures"]

[dependencies]
serde = { version = "1.0", optional = true }

[dev-dependencies]
serde_json = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }
bincode = { version = "1.3" }

[features]
amortize = []