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-04 10:01:06 +01:00
|
|
|
rand = "0.8.0"
|
|
|
|
coz = "0.1"
|
2021-01-06 14:37:51 +01:00
|
|
|
tinyvec = "1.1.0"
|
2021-01-04 10:01:06 +01:00
|
|
|
|
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]
|
2021-01-05 23:04:38 +01:00
|
|
|
debug = 1
|
|
|
|
lto = "fat"
|
|
|
|
codegen-units = 1
|
|
|
|
panic = "abort"
|