inital commit, which is clearly not initial

Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
Uncle Stretch
2024-10-03 15:38:52 +03:00
commit 66719626bb
178 changed files with 41709 additions and 0 deletions

29
client/cli/Cargo.toml Normal file
View File

@@ -0,0 +1,29 @@
[package]
name = "ghost-client-cli"
version = "0.1.3"
description = "Ghost CLI interface"
license.workspace = true
authors.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
[dependencies]
clap = { workspace = true }
itertools = { workspace = true }
bip39 = { workspace = true }
rand = { workspace = true }
array-bytes = { workspace = true }
serde_json = { workspace = true }
sc-cli = { workspace = true }
sp-runtime = { workspace = true }
sp-core = { workspace = true }
[features]
default = ["std"]
std = [
"serde_json/std",
"sp-runtime/std",
"sp-core/std",
]