25 lines
458 B
TOML
25 lines
458 B
TOML
# file: kb-wallet/Cargo.toml
|
|
# version: 2
|
|
|
|
[package]
|
|
name = "kb-wallet"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish.workspace = true
|
|
|
|
[dependencies]
|
|
kb-core = { path = "../kb-core" }
|
|
serde_json.workspace = true
|
|
solana-keypair.workspace = true
|
|
solana-signer.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
zeroize.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|