-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 777 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 777 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
28
29
30
31
32
33
34
35
[package]
name = "silverfish"
description = "Easily edit Minecraft worlds with a simple, fast and powerful API"
version = "0.3.0"
edition = "2024"
authors = ["ReeZey", "VilleOlof"]
categories = ["parser-implementations", "game-development"]
keywords = ["minecraft", "nbt", "mca", "edit", "block"]
readme = "readme.md"
license = "MIT"
repository = "https://github.com/VilleOlof/silverfish"
exclude = ["tests/*", "logo.png"]
[dependencies]
simdnbt = "0.8.0"
mca = "1.1"
thiserror = "2"
fixedbitset = "0.5"
ahash = "0.8"
dashmap = { version = "6.1.0", features = ["rayon"] }
rayon = "1.10"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "full_region_set_block"
harness = false
[profile.profiling]
inherits = "release"
debug = true
[workspace]
members = ["examples/*"]