-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
68 lines (51 loc) · 987 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "worldlines"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[lib]
bench = false
[dependencies]
worldlines-macros.path = "./macros"
indexmap = "2.4.0"
thiserror = "1.0.63"
atomic_refcell = "0.1.13"
dashmap = "6.1.0"
[dev-dependencies]
# for benchmarks
criterion = "0.5"
# workspace
# ---------
[workspace]
resolver = "2"
members = ["macros"]
[workspace.package]
authors = ["Alexandra Reaves <alexandra+git@reaves.io>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/NyxAlexandra/worldlines"
rust-version = "1.83"
version = "0.1.0"
# benchmarks
# ----------
# `bulk_spawn`
[[bench]]
name = "spawn"
harness = false
[[bench]]
name = "spawn_iter"
harness = false
# ---
[[bench]]
name = "bulk_insert"
harness = false
[[bench]]
name = "bulk_remove"
harness = false
# `query`
[[bench]]
name = "query"
harness = false