2021-11-22 11:28:30 -05:00
|
|
|
[package]
|
|
|
|
name = "veilid-server"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["John Smith <jsmith@example.com>"]
|
2022-01-04 14:25:32 -05:00
|
|
|
edition = "2021"
|
2021-11-22 11:28:30 -05: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"
|
|
|
|
|
2022-06-26 21:12:16 -04:00
|
|
|
[features]
|
2022-06-27 23:46:29 -04:00
|
|
|
default = [ "rt-tokio" ]
|
|
|
|
rt-async-std = [ "veilid-core/rt-async-std", "async-std", "opentelemetry/rt-async-std", "opentelemetry-otlp/grpc-sys"]
|
2022-06-29 10:13:49 -04:00
|
|
|
rt-tokio = [ "veilid-core/rt-tokio", "tokio", "tokio-stream", "tokio-util", "opentelemetry/rt-tokio"]
|
2022-06-26 21:12:16 -04:00
|
|
|
tracking = ["veilid-core/tracking"]
|
|
|
|
|
2021-11-22 11:28:30 -05:00
|
|
|
[dependencies]
|
2022-06-26 21:12:16 -04:00
|
|
|
veilid-core = { path = "../veilid-core" }
|
2022-06-07 21:31:05 -04:00
|
|
|
tracing = { version = "^0", features = ["log", "attributes"] }
|
|
|
|
tracing-subscriber = { version = "^0", features = ["env-filter"] }
|
|
|
|
tracing-appender = "^0"
|
2022-06-11 18:47:58 -04:00
|
|
|
tracing-opentelemetry = "^0"
|
2022-07-14 16:57:34 -04:00
|
|
|
# Buggy: tracing-error = "^0"
|
2022-06-26 21:12:16 -04:00
|
|
|
opentelemetry = { version = "^0" }
|
|
|
|
opentelemetry-otlp = { version = "^0" }
|
2022-06-15 15:03:13 -04:00
|
|
|
opentelemetry-semantic-conventions = "^0"
|
2022-06-26 21:12:16 -04:00
|
|
|
async-std = { version = "^1", features = ["unstable"], optional = true }
|
2022-06-27 23:46:29 -04:00
|
|
|
tokio = { version = "^1", features = ["full"], optional = true }
|
2022-06-29 10:13:49 -04:00
|
|
|
tokio-stream = { version = "^0", features = ["net"], optional = true }
|
|
|
|
tokio-util = { version = "^0", features = ["compat"], optional = true}
|
2022-06-26 21:12:16 -04:00
|
|
|
async-tungstenite = { version = "^0", features = ["async-tls"] }
|
2022-07-14 16:57:34 -04:00
|
|
|
color-eyre = { version = "^0", default-features = false }
|
2022-06-29 13:57:53 -04:00
|
|
|
clap = "^3"
|
2022-01-10 22:36:54 -05:00
|
|
|
directories = "^4"
|
2021-11-22 11:28:30 -05:00
|
|
|
capnp = "^0"
|
|
|
|
parking_lot = "^0"
|
|
|
|
capnp-rpc = "^0"
|
|
|
|
config = { version = "^0", features = ["yaml"] }
|
2022-01-10 22:36:54 -05:00
|
|
|
cfg-if = "^1"
|
2021-11-22 11:28:30 -05:00
|
|
|
serde = "^1"
|
|
|
|
serde_derive = "^1"
|
2022-01-05 20:32:43 -05:00
|
|
|
serde_yaml = "^0"
|
2022-06-29 10:34:23 -04:00
|
|
|
futures-util = { version = "^0", default_features = false, features = ["alloc"] }
|
2021-11-22 11:28:30 -05:00
|
|
|
url = "^2"
|
|
|
|
ctrlc = "^3"
|
|
|
|
lazy_static = "^1"
|
|
|
|
bugsalot = "^0"
|
2022-03-11 07:35:41 -05:00
|
|
|
flume = { version = "^0", features = ["async"] }
|
2022-05-16 11:52:48 -04:00
|
|
|
rpassword = "^6"
|
2022-06-15 15:03:13 -04:00
|
|
|
hostname = "^0"
|
2022-06-29 10:13:49 -04:00
|
|
|
stop-token = { version = "^0", default-features = false }
|
2021-11-22 11:28:30 -05:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
windows-service = "^0"
|
2022-06-07 21:31:05 -04:00
|
|
|
ansi_term = "^0"
|
2021-11-22 11:28:30 -05:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
daemonize = "^0"
|
2022-05-16 11:52:48 -04:00
|
|
|
signal-hook = "^0"
|
|
|
|
signal-hook-async-std = "^0"
|
|
|
|
nix = "^0"
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2022-06-07 21:31:05 -04:00
|
|
|
tracing-journald = "^0"
|
2021-11-22 11:28:30 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serial_test = "^0"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
capnpc = "^0"
|