mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-11-17 00:07:53 +00:00
Someone Else
8ed2183a83
Removed some functions that'll be useless for blockchainDB. Docs the hardfork info ones. Also set clippy to deny `expect()` and `panic!()` as /u/danda suggested on reddit. Set blockchain_db in workspace dependencies + corrected the build rustflags.
38 lines
No EOL
748 B
TOML
38 lines
No EOL
748 B
TOML
[package]
|
|
name = "cuprate"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
rust-version = "1.67.0"
|
|
description = "An upcoming experimental, modern & secure monero node"
|
|
readme = "readme.md"
|
|
license = "GPL-3"
|
|
repository = "https://github.com/SyntheticBird45/cuprate"
|
|
|
|
|
|
# All Contributors on github
|
|
authors=[
|
|
"SyntheticBird45 <@someoneelse495495:matrix.org>"
|
|
]
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
"blockchain_db"
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
monero = {version = "*", features = ['serde']}
|
|
serde = "*"
|
|
|
|
# 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"] |