mirror of
https://github.com/Cuprate/cuprate.git
synced 2025-01-10 04:44:53 +00:00
19 lines
No EOL
307 B
TOML
19 lines
No EOL
307 B
TOML
[package]
|
|
name = "random-x"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["jit"]
|
|
jit = ["dep:dynasmrt"]
|
|
|
|
[dependencies]
|
|
blake2 = "0.10"
|
|
argon2 = "0.5"
|
|
aes = {version = "0.8", features = ["hazmat"]}
|
|
hex-literal = "0.4"
|
|
|
|
dynasmrt = {version = "2.0.0", optional = true}
|
|
|
|
[profile.dev]
|
|
opt-level = 2 |