-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (34 loc) · 938 Bytes
/
Cargo.toml
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
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "phoenixd-rs"
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = ["thesimplekid <tsk@thesimplekid.com>"]
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"