[package] name = "phoenixd-rs" version = "0.4.0" edition = "2021" license = "MIT" authors = ["thesimplekid "] description = "Phoenixd API SDK" homepage = "https://github.com/thesimplekid/phoenixd-rs" repository = "https://github.com/thesimplekid/phoenixd-rs" rust-version = "1.63.0" # MSRV [dependencies] anyhow = "1" axum = "0.6.20" reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "rustls-tls-native-roots", "socks"]} serde = { version = "1", features = ["derive"] } serde_json = "1" tokio = { version = "1", default-features = false } thiserror = "1" log = "0.4" async-trait = "0.1" [dev-dependencies] tokio = { version = "1", features =["rt-multi-thread", "macros", "sync", "time"] } uuid = { version = "1", features = ["v4"] } dotenvy = "0.15" [[example]] name = "create_invoice" [profile] [profile.ci] inherits = "dev" incremental = false lto = "off"