veilid/veilid-server/Cargo.toml

48 lines
1.0 KiB
TOML
Raw Normal View History

2021-11-22 10:28:30 -06:00
[package]
name = "veilid-server"
version = "0.1.0"
authors = ["John Smith <jsmith@example.com>"]
2022-01-04 13:25:32 -06:00
edition = "2021"
2021-11-22 10:28:30 -06:00
build = "build.rs"
license = "LGPL-2.0-or-later OR MPL-2.0 OR (MIT AND BSD-3-Clause)"
[[bin]]
name = "veilid-server"
path = "src/main.rs"
[dependencies]
log = "^0"
simplelog = { version = "^0", features = ["test"] }
clap = "^3"
2021-11-22 10:28:30 -06:00
async-std = { version = "^1", features = ["unstable"] }
async-tungstenite = { version = "^0", features = ["async-std-runtime", "async-tls"] }
veilid-core = { path = "../veilid-core" }
directories = "^4"
2021-11-22 10:28:30 -06:00
capnp = "^0"
parking_lot = "^0"
capnp-rpc = "^0"
config = { version = "^0", features = ["yaml"] }
failure = "^0"
cfg-if = "^1"
2021-11-22 10:28:30 -06:00
serde = "^1"
serde_derive = "^1"
2022-01-05 19:32:43 -06:00
serde_yaml = "^0"
2021-11-22 10:28:30 -06:00
futures = "^0"
url = "^2"
ctrlc = "^3"
lazy_static = "^1"
bugsalot = "^0"
2022-03-11 06:35:41 -06:00
flume = { version = "^0", features = ["async"] }
2021-11-22 10:28:30 -06:00
[target.'cfg(windows)'.dependencies]
windows-service = "^0"
[target.'cfg(unix)'.dependencies]
daemonize = "^0"
[dev-dependencies]
serial_test = "^0"
[build-dependencies]
capnpc = "^0"