-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (30 loc) · 808 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
36
37
[package]
name = "mbarc-map"
version = "0.10.0"
edition = "2021"
rust-version = "1.66.1"
license = "MIT"
description = "Implementation of a Minimally-blocking, Atomic Reference Counted Map"
repository = "https://github.com/gentlecolts/mbarc-map"
readme = "README.md"
categories = ["algorithms", "concurrency", "data-structures", "game-development"]
keywords = ["map", "hashmap", "thread-safe", "mutex"]
exclude = [
".idea/*",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
[profile.bench]
opt-level = 3
debug = true
[profile.test]
opt-level = 3
debug = true
[dependencies]
[dev-dependencies]
rand_chacha = "0.9.0-alpha.0"
rand = "0.9.0-alpha.0"
rayon = { version = "1.8", features = [] }