mercury/Cargo.toml

33 lines
571 B
TOML
Raw Permalink Normal View History

2021-01-01 19:04:22 +01:00
[package]
2021-01-03 00:15:45 +01:00
name = "mercury"
2021-01-01 19:04:22 +01:00
version = "0.1.0"
authors = ["Daniel Olsen <daniel.olsen99@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-01-07 23:44:44 +01:00
rand = "0.8.1"
2021-01-04 10:01:06 +01:00
coz = "0.1"
2021-01-06 14:37:51 +01:00
tinyvec = "1.1.0"
2021-01-04 10:01:06 +01:00
2021-05-14 00:14:39 +02:00
cached = "0.23.0"
2021-05-16 00:23:45 +02:00
ahash = "0.7.2"
2021-05-14 00:14:39 +02:00
2021-05-16 19:12:56 +02:00
thousands = "0.2.0"
2021-01-07 23:44:44 +01:00
modular-bitfield = "0.11.2"
2022-02-15 11:18:51 +01:00
byte-strings = "0.2.2"
2021-01-05 23:04:38 +01:00
#jemallocator = "0.3.2"
#mimalloc = { version = "0.1.22", default-features = false }
2021-01-07 12:52:30 +01:00
#alloc_counter = "0.0.4"
2021-01-05 23:04:38 +01:00
2021-01-04 10:01:06 +01:00
[profile.release]
debug = 0
2021-01-05 23:04:38 +01:00
lto = "fat"
codegen-units = 1
panic = "abort"