forked from komora-io/inline-array
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 780 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 780 Bytes
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 = "inline-array"
version = "0.1.13"
edition = "2021"
authors = ["Tyler Neely <tylerneely@gmail.com>"]
description = "efficient immutable inlinable byte array"
license = "MIT OR Apache-2.0"
repository = "https://github.com/komora-io/inline-array"
keywords = ["multi-threaded", "performance", "io"]
categories = ["concurrency", "data-structures", "rust-patterns"]
readme = "README.md"
[features]
# this is for exercising the 32-bit functionality during test on 64-bit machines
fake_32_bit = []
concurrent_map_minimum = ["concurrent-map"]
[profile.release]
debug = true
[dependencies]
concurrent-map = { version = "5.0", features = ["serde"], optional = true }
serde = { version = "1.0", optional = true }
[dev-dependencies]
bincode = "1.3.3"
quickcheck = "1.0.3"