aboutsummaryrefslogtreecommitdiffhomepage
path: root/Cargo.toml
blob: bd323c930c7cd0aeb151cca8cbb8d6b26d96b870 (plain)
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
[package]
name = "hbbs"
version = "0.1.0"
authors = ["open-trade <info@opentradesolutions.com>"]
edition = "2018"

[[bin]]
name = "hbbr"
path = "src/hbbr/main.rs"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
hbb_common = { path = "libs/hbb_common" }
sled = "0.31"
serde_derive = "1.0"
serde = "1.0"
serde_json = "1.0"
lazy_static = "1.4"
clap = "2.33"
rust-ini = "0.15"

[workspace]
members = ["libs/hbb_common"]