veilid/veilid-server/Cargo.toml

75 lines
2.4 KiB
TOML
Raw Normal View History

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
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]
2023-06-07 17:39:10 -04:00
default = ["rt-tokio", "veilid-core/default"]
crypto-test = ["rt-tokio", "veilid-core/crypto-test"]
crypto-test-none = ["rt-tokio", "veilid-core/crypto-test-none"]
2023-03-13 17:57:51 -04:00
2023-06-07 17:39:10 -04:00
rt-async-std = ["veilid-core/rt-async-std", "async-std", "opentelemetry/rt-async-std", "opentelemetry-otlp/grpc-sys"]
rt-tokio = ["veilid-core/rt-tokio", "tokio", "tokio-stream", "tokio-util", "opentelemetry/rt-tokio", "console-subscriber"]
tracking = ["veilid-core/tracking"]
2022-06-26 21:12:16 -04:00
2021-11-22 11:28:30 -05:00
[dependencies]
2023-03-13 17:57:51 -04:00
veilid-core = { path = "../veilid-core", default-features = false }
2022-06-07 21:31:05 -04:00
tracing = { version = "^0", features = ["log", "attributes"] }
tracing-subscriber = { version = "^0", features = ["env-filter"] }
tracing-appender = "^0"
2023-05-29 15:24:57 -04:00
tracing-opentelemetry = "0.18"
2022-07-14 16:57:34 -04:00
# Buggy: tracing-error = "^0"
2023-05-29 15:24:57 -04:00
opentelemetry = { version = "0.18" }
opentelemetry-otlp = { version = "0.11" }
opentelemetry-semantic-conventions = "0.10"
2022-06-26 21:12:16 -04:00
async-std = { version = "^1", features = ["unstable"], optional = true }
2022-11-03 11:28:29 -04:00
tokio = { version = "^1", features = ["full", "tracing"], optional = true }
console-subscriber = { version = "^0", 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-11-03 11:28:29 -04:00
backtrace = "^0"
2022-06-29 13:57:53 -04:00
clap = "^3"
directories = "^4"
2021-11-22 11:28:30 -05:00
parking_lot = "^0"
config = { version = "^0", features = ["yaml"] }
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-11-16 12:49:53 -05:00
json = "^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"
2023-05-29 15:24:57 -04:00
bugsalot = { git = "https://github.com/crioux/bugsalot.git" }
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 }
2023-05-29 15:24:57 -04:00
sysinfo = { version = "^0.28.4", default-features = false }
2023-06-07 17:39:10 -04:00
wg = "0.3.2"
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]
2023-06-07 17:39:10 -04:00
serial_test = "^0"