[package]
edition = "2024"
name = "fireblocks-sdk"
version = "2026.3.28"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of the Fireblocks SDK"
homepage = "https://github.com/CarteraMesh/fireblocks-sdk-rs"
documentation = "https://docs.rs/fireblocks-sdk"
readme = "README.md"
keywords = [
"bitcoin",
"blockchain",
"fireblocks",
"solana",
]
categories = ["cryptography::cryptocurrencies"]
license = "MIT"
repository = "https://github.com/CarteraMesh/fireblocks-sdk-rs"
resolver = "2"
[features]
bon = []
default = [
"bon",
"page",
]
page = []
rustls-tls = ["reqwest/rustls-tls"]
[lib]
name = "fireblocks_sdk"
path = "src/lib.rs"
[[example]]
name = "vaults"
path = "examples/vaults.rs"
[[test]]
name = "paged_client"
path = "tests/paged_client.rs"
[[test]]
name = "setup"
path = "tests/setup.rs"
[[test]]
name = "staking"
path = "tests/staking.rs"
[[test]]
name = "supported_assets"
path = "tests/supported_assets.rs"
[[test]]
name = "transactions_api"
path = "tests/transactions_api.rs"
[[test]]
name = "transfers"
path = "tests/transfers.rs"
[[test]]
name = "vaults_api"
path = "tests/vaults_api.rs"
[[test]]
name = "wallet_connect"
path = "tests/wallet_connect.rs"
[[test]]
name = "wallets"
path = "tests/wallets.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "^0.1"
[dependencies.bon]
version = "3"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
default-features = true
[dependencies.futures]
version = "0.3"
[dependencies.http]
version = "1"
[dependencies.jsonwebtoken]
version = "10"
features = ["rust_crypto"]
[dependencies.rand]
version = "0.9"
[dependencies.reqwest]
version = "^0.12"
features = [
"json",
"multipart",
]
[dependencies.reqwest-middleware]
version = "^0.4"
features = [
"json",
"multipart",
]
[dependencies.serde]
version = "^1.0"
features = ["derive"]
[dependencies.serde_json]
version = "^1.0"
[dependencies.serde_with]
version = "^3.8"
features = [
"base64",
"json",
"macros",
"std",
]
default-features = false
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "^2"
[dependencies.tokio]
version = "1"
features = ["time"]
default-features = false
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "^2.5"
[dependencies.uuid]
version = "^1.8"
features = [
"serde",
"v4",
]
[dev-dependencies.dotenvy]
version = "0.15"
[dev-dependencies.lazy_static]
version = "1.4.0"
[dev-dependencies.rstest]
version = "0.25.0"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.tokio-stream]
version = "0.1"
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"serde",
]
[lints.clippy]
doc_markdown = "allow"
enum_glob_use = "deny"
future_not_send = "allow"
missing_errors_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
option_if_let_else = "warn"
return_self_not_must_use = "allow"
unwrap_used = "deny"
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
non_snake_case = "allow"
unsafe_code = "forbid"
unused_imports = "allow"