-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Structural Changes & Bug fixing for v0.1.0-pre.alpha.3
- Loading branch information
1 parent
6888214
commit 2a8bf4c
Showing
17 changed files
with
356 additions
and
378 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
/target | ||
/.idea | ||
/nebula_db | ||
/nebula_db | ||
/.cargo | ||
/*.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
[package] | ||
name = "nebulacrypto" | ||
name = "nebula" | ||
version = "0.1.0-pre.alpha.3" | ||
edition = "2024" | ||
authors = ["NEBYTE [email protected]"] | ||
description = "Nebula is a blockchain-based system that replicates ICP’s architecture—including neurons, governance, canisters, transactions, and staking. It uses ed25519-dalek for key management and transaction signing." | ||
license = "AGPL-3" | ||
readme = "README.md" | ||
repository = "https://github.com/NEBYTE/nebula" | ||
|
||
[dependencies] | ||
tokio = { version = "1", features = ["rt-multi-thread", "macros", "full"] } | ||
|
@@ -13,14 +18,27 @@ chrono = { version = "0.4.39", features = ["serde"]} | |
sha2 = "0.10.8" | ||
hex = "0.4.3" | ||
|
||
[package.metadata.deb] | ||
maintainer = "NEBYTE [email protected]" | ||
copyright = "2025, NEBYTE" | ||
license-file = ["LICENSE"] | ||
depends = "libssl-dev" | ||
section = "utils" | ||
priority = "optional" | ||
assets = [ | ||
["target/release/nebula", "/usr/bin/", "755"], | ||
] | ||
|
||
[[bin]] | ||
name = "nebula" | ||
path = "src/main.rs" | ||
|
||
[lib] | ||
name = "nebula" | ||
path = "src/lib.rs" | ||
|
||
[[test]] | ||
name = "transactions" | ||
path = "tests/transactions.rs" | ||
|
||
[[test]] | ||
name = "staking" | ||
path = "tests/staking.rs" | ||
[profile.release] | ||
strip = true | ||
opt-level = "z" | ||
lto = true | ||
panic = "abort" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.