31 lines
834 B
TOML
31 lines
834 B
TOML
[package]
|
|
name = "sal-mycelium"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["PlanetFirst <info@incubaid.com>"]
|
|
description = "SAL Mycelium - Client interface for interacting with Mycelium node's HTTP API"
|
|
repository = "https://git.threefold.info/herocode/sal"
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
# HTTP client for async requests
|
|
reqwest = { workspace = true }
|
|
# JSON handling
|
|
serde_json = { workspace = true }
|
|
# Base64 encoding/decoding for message payloads
|
|
base64 = { workspace = true }
|
|
# Async runtime
|
|
tokio = { workspace = true }
|
|
# Rhai scripting support
|
|
rhai = { workspace = true }
|
|
# Logging
|
|
log = { workspace = true }
|
|
# URL encoding for API parameters
|
|
urlencoding = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
# For async testing
|
|
tokio-test = { workspace = true }
|
|
# For temporary files in tests
|
|
tempfile = { workspace = true }
|