cuprate/Cargo.toml
Someone Else 1d4abc841c
License correction for github (#10)
* Rename AGPL-3.0 to LICENSE-AGPL

* Create LICENSE-MIT (#9)

* Rename LICENSE to LICENSE.md

* remove rust version

* bump rust-version
2023-03-20 21:35:20 +01:00

41 lines
827 B
TOML

[package]
name = "cuprate"
version = "0.0.1"
edition = "2021"
rust-version = "1.68.0"
description = "An upcoming experimental, modern & secure monero node"
readme = "readme.md"
license = "AGPL-3.0-only"
repository = "https://github.com/SyntheticBird45/cuprate"
# All Contributors on github
authors=[
"SyntheticBird45",
"Boog900"
]
[workspace]
members = [
"blockchain_db",
"net/levin",
"net/monero-wire"
]
[workspace.dependencies]
monero = {version = "*", features = ['serde']}
serde = { version = "*", features =["derive"]}
# As suggested by /u/danda :
thiserror = "*"
[profile.release]
opt-level = 3
debug = 0
strip = "symbols"
lto = "thin"
panic = "abort"
[build]
rustflags=["-Zcf-protection=full", "-Zsanitizer=cfi", "-Crelocation-model=pie", "-Cstack-protector=all"]