-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
35 lines (29 loc) · 786 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
28
29
30
31
32
33
34
35
[package]
name = "shared_arena"
version = "0.8.4"
authors = ["Sebastien Chapuis <sebastien@chapu.is>"]
edition = "2018"
license = "MIT"
description = "A thread-safe & efficient memory pool "
repository = "https://github.com/sebastiencs/shared-arena"
homepage = "https://github.com/sebastiencs/shared-arena"
keywords = ["memory", "pool", "thread"]
categories = ["memory-management", "concurrency"]
readme = "README.md"
include = [
"**/*.rs",
"Cargo.toml",
"README.md"
]
[badges]
codecov = { repository = "sebastiencs/shared-arena" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
bench = false
[dependencies]
static_assertions = "1"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "mempool"
harness = false