rustdesk-server/Cargo.toml

39 lines
778 B
TOML
Raw Normal View History

2020-03-04 14:10:58 +08:00
[package]
name = "hbbs"
2021-04-03 22:32:14 +08:00
version = "1.1.3"
2020-03-04 14:10:58 +08:00
authors = ["open-trade <info@opentradesolutions.com>"]
edition = "2018"
2020-09-24 17:26:58 +08:00
build= "build.rs"
2020-03-04 14:10:58 +08:00
2020-09-17 00:04:39 +08:00
[[bin]]
2020-09-18 00:47:15 +08:00
name = "hbbr"
2021-03-19 16:48:21 +08:00
path = "src/hbbr.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-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-10-31 14:33:25 +08:00
rust-ini = "0.16"
2021-04-09 12:27:22 +08:00
reqwest = { version = "0.10", features = ["json", "blocking"] }
2021-04-08 18:59:57 +08:00
machine-uid = "0.2"
mac_address = "1.1"
whoami = "0.9"
base64 = "0.13"
2021-04-09 18:02:10 +08:00
rand = "0.8"
2020-03-07 23:24:58 +08:00
2020-09-24 17:26:58 +08:00
[build-dependencies]
hbb_common = { path = "libs/hbb_common" }
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
2021-03-19 11:32:28 +08:00
[dependencies.rocksdb]
default-features = false
features = ["lz4"]
version = "0.15"