-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (29 loc) · 872 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
[package]
name = "rcnb-rs"
version = "0.1.0"
authors = ["soeur <[email protected]>"]
edition = "2018"
license = "MIT"
description = "Everything can be encoded into RCNB with Rust."
homepage = "https://docs.rs/rcnb-rs"
documentation = "https://docs.rs/rcnb-rs"
repository = "https://github.com/juzi5201314/rcnb-rs"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
argh = "0.1.3"
mimalloc-rs = { package = "mimalloc", version = "0.1.25", optional = true, default-features = false }
snmalloc-rs = { version = "0.2.27", optional = true }
[features]
default = []
mimalloc = ["mimalloc-rs"]
snmalloc = ["snmalloc-rs", "snmalloc-rs/native-cpu"]
[dev-dependencies]
rand = "0.7.3"
paste = "1.0.0"
byte-unit = "4.0.9"
[profile.release]
lto = true
[profile.bench]
opt-level = 3
lto = true