-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 838 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (26 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "lnbot"
version = "1.0.0"
edition = "2021"
description = "Official Rust SDK for LnBot — Bitcoin for AI Agents. Send and receive sats over Lightning."
license = "MIT"
repository = "https://github.com/lnbotdev/rust-sdk"
homepage = "https://ln.bot"
documentation = "https://docs.rs/lnbot"
readme = "README.md"
keywords = ["lnbot", "lightning", "bitcoin", "payments", "bolt11"]
categories = ["api-bindings", "cryptography::cryptocurrencies"]
[dependencies]
reqwest = { version = "0.12", features = ["json", "stream"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
futures-core = "0.3"
futures-util = "0.3"
async-stream = "0.3"
urlencoding = "2"
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
mockito = "1"
serde_json = "1"
futures-util = "0.3"