This commit is contained in:
2025-08-05 15:33:03 +02:00
parent 7856fc0a4e
commit 0c02d0e99f
326 changed files with 334 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
[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 = { version = "0.12.15", features = ["json"] }
# JSON handling
serde_json = "1.0"
# Base64 encoding/decoding for message payloads
base64 = "0.22.1"
# Async runtime
tokio = { version = "1.45.0", features = ["full"] }
# Rhai scripting support
rhai = { version = "1.12.0", features = ["sync"] }
# Logging
log = "0.4"
# URL encoding for API parameters
urlencoding = "2.1.3"
[dev-dependencies]
# For async testing
tokio-test = "0.4.4"
# For temporary files in tests
tempfile = "3.5"