[package]
edition = "2024"
rust-version = "1.85"
name = "interveil-sdk"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A portable execution language for intent-based Solana transactions — build, sign, and submit intents without holding keys"
documentation = "https://docs.rs/interveil-sdk"
readme = "README.md"
keywords = [
"solana",
"blockchain",
"intent",
"transaction",
"sdk",
]
categories = ["cryptography::cryptocurrencies"]
license = "Apache-2.0"
repository = "https://github.com/Interveil/veil-sdk"
[lib]
name = "interveil_sdk"
path = "src/lib.rs"
[[test]]
name = "acceptance"
path = "tests/acceptance.rs"
[[test]]
name = "client"
path = "tests/client.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "intent"
path = "tests/intent.rs"
[[test]]
name = "serialize"
path = "tests/serialize.rs"
[[test]]
name = "sign"
path = "tests/sign.rs"
[dependencies.bincode]
version = "1.3"
[dependencies.blake3]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dev-dependencies.ed25519-dalek]
version = "2"
features = ["rand_core"]
[dev-dependencies.rand]
version = "0.8"