23 lines
455 B
TOML
23 lines
455 B
TOML
# file: kb-lib/Cargo.toml
|
|
# version: 2
|
|
|
|
[package]
|
|
name = "kb-lib"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish.workspace = true
|
|
|
|
[dependencies]
|
|
kb-core = { path = "../kb-core" }
|
|
kb-program-ids = { path = "../kb-program-ids" }
|
|
base64 = "0.22"
|
|
bs58 = "0.5"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sha2 = "0.10"
|
|
ts-rs = { version = "11", features = ["serde-compat"] }
|
|
|
|
[lints]
|
|
workspace = true
|