-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
25 lines (22 loc) · 844 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
24
25
[package]
name = "hash-trie"
version = "0.4.0"
authors = ["Mitchell Keith Bloch <[email protected]>"]
description = "Hash Array Mapped Trie (HAMT) Immutable Set Implementation"
readme = "README.md"
edition = "2018"
repository = "https://github.com/bazald/hash-trie/"
license = "MPL-2.0"
keywords = ["hashmap", "nostd", "concurrency", "immutable", "generic"]
[dependencies]
async-recursion = "^0.3.2"
fnv = { version = "^1.0.7", default-features = false }
futures-core = { version = "^0.3.17", default-features = false, features = ["alloc"] }
futures-util = { version = "^0.3.17", default-features = false, features = ["alloc", "async-await", "async-await-macro"] }
[dev-dependencies]
futures-executor = "^0.3.17"
im = "^15.0.0"
rand = "^0.8.3"
tokio = { version = "^1.13.0", features = ["macros", "rt-multi-thread"] }
[features]
default = []