Initial commit: aether-tools-rs workspace

This commit is contained in:
gyt
2026-07-09 13:28:28 -04:00
commit 695725857d
17 changed files with 1912 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
[workspace]
resolver = "2"
members = ["crates/*", "examples/*"]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
aether-atom = { path = "/home/cosmos/aether-atom" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha3 = "0.10"
tokio = { version = "1", features = ["rt-multi-thread", "sync", "macros", "io-util", "net"] }
clap = { version = "4", features = ["derive"] }
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = "symbols"