-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (26 loc) · 1.03 KB
/
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
[package]
name = "murray-rs"
description = "murray-rs is a comprehensive crate designed for seamless integration with Murray Rothbot's suite of APIs, including Blockchain, Lightning, and Prices"
version = "0.1.0"
authors = ["Guilherme Pereira <guilospanck@protonmail.com>"]
edition = "2021"
license-file = "LICENSE"
homepage = "https://github.com/Guilospanck/murray-rs"
repository = "https://github.com/Guilospanck/murray-rs"
readme = "README.md"
keywords = ["murray", "lightning", "mempool"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1", features = ["full"] }
thiserror = "1.0.58"
strum = { version = "0.26.2", features = ["derive", "strum_macros"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.114"
[dev-dependencies]
httpmock = "0.7.0"
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true
panic = "abort"