-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (25 loc) · 949 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
26
27
[package]
name = "bumparaw-collections"
version = "0.1.4"
description = "A small set of bumpalo-backed collections for low-level operations"
authors = ["Louis Dureuil <[email protected]>", "Kerollmops <[email protected]>"]
license = "MIT"
repository = "https://github.com/meilisearch/bumparaw-collections"
keywords = ["bumpalo", "collections", "serde", "json", "bitpacking"]
categories = ["algorithms", "data-structures"]
edition = "2021"
[dependencies]
allocator-api2 = "0.2.21"
bitpacking = "0.9.2"
bumpalo = { version = "3.16.0", features = [
"boxed",
"collections",
"serde",
"std",
"allocator-api2",
] }
hashbrown = { version = "0.15.2", features = ["allocator-api2", "serde"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = { version = "1.0.135", features = ["preserve_order", "raw_value"] }
[dev-dependencies]
rand = { version = "0.8.5", default-features = false, features = ["std_rng"] }