org-ops-core now re-exports git_blob_hash, git_blob_hash_hex, and git_blob_cid from the shared governance-types crate. BPF key helpers remain local. sha1 direct dependency removed (transitive through governance-types). Signed-off-by: Tyler King <tking@guildhouse.dev>
22 lines
592 B
TOML
22 lines
592 B
TOML
[package]
|
|
name = "org-ops-core"
|
|
description = "Framework for building governed consortium CLI tools"
|
|
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"
|