rustdesk-server/Cargo.toml

25 lines
465 B
TOML
Raw Normal View History

2020-03-04 14:10:58 +08:00
[package]
name = "hbbs"
version = "0.1.0"
authors = ["open-trade <info@opentradesolutions.com>"]
edition = "2018"
2020-09-17 00:04:39 +08:00
[[bin]]
2020-09-18 00:47:15 +08:00
name = "hbbr"
path = "src/hbbr/main.rs"
2020-09-17 00:04:39 +08:00
2020-03-04 14:10:58 +08:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-03-07 23:24:58 +08:00
hbb_common = { path = "libs/hbb_common" }
2020-05-14 17:18:07 +08:00
sled = "0.31"
2020-05-15 03:16:46 +08:00
serde_derive = "1.0"
serde = "1.0"
serde_json = "1.0"
2020-09-17 00:04:39 +08:00
lazy_static = "1.4"
2020-09-18 13:04:39 +08:00
clap = "2.33"
2020-03-07 23:24:58 +08:00
[workspace]
2020-03-09 13:55:12 +08:00
members = ["libs/hbb_common"]
2020-03-04 14:10:58 +08:00