Signed-off-by: Tyler King <tking@guildhouse.dev> Signed-off-by: Tyler J King <tking727@gmail.com>
24 lines
676 B
TOML
24 lines
676 B
TOML
[package]
|
|
name = "org-ops-core"
|
|
description = "Framework for building governed consortium CLI tools"
|
|
license = "Apache-2.0"
|
|
repository = "https://git.guildhouse.dev/guildhouse/org-ops"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive", "string"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
anyhow = "1"
|
|
reqwest = { version = "0.12", features = ["json", "blocking"] }
|
|
rand = "0.8"
|
|
sha2 = "0.10"
|
|
base64 = "0.22"
|
|
urlencoding = "2"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
governance-types = { path = "../../substrate/crates/governance-types" }
|
|
hex = "0.4"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|