2021-11-22 11:28:30 -05:00
|
|
|
[package]
|
2023-09-02 10:41:59 -04:00
|
|
|
# --- Bumpversion match - do not reorder
|
2021-11-22 11:28:30 -05:00
|
|
|
name = "veilid-server"
|
2024-07-07 13:32:33 -04:00
|
|
|
version = "0.3.3"
|
2023-09-02 10:41:59 -04:00
|
|
|
# ---
|
|
|
|
description = "Veilid Server"
|
2023-07-19 12:48:44 -04:00
|
|
|
authors = ["Veilid Team <contact@veilid.com>"]
|
|
|
|
license = "MPL-2.0"
|
2022-01-04 14:25:32 -05:00
|
|
|
edition = "2021"
|
2023-10-31 07:17:13 -04:00
|
|
|
resolver = "2"
|
2021-11-22 11:28:30 -05:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "veilid-server"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2022-06-26 21:12:16 -04:00
|
|
|
[features]
|
2023-12-17 09:52:10 -05:00
|
|
|
default = ["rt-tokio", "veilid-core/default", "otlp-tonic"]
|
2023-12-16 15:49:53 -05:00
|
|
|
default-async-std = ["rt-async-std", "veilid-core/default-async-std"]
|
2023-12-17 09:52:10 -05:00
|
|
|
|
2023-06-07 17:39:10 -04:00
|
|
|
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
|
|
|
|
2024-03-02 17:45:26 -05:00
|
|
|
otlp-tonic = ["opentelemetry-otlp/grpc-tonic", "opentelemetry-otlp/trace"]
|
2024-07-17 18:58:33 -04:00
|
|
|
# otlp-grpc = ["opentelemetry-otlp/grpc-sys", "opentelemetry-otlp/trace"]
|
2023-12-17 09:52:10 -05:00
|
|
|
|
2023-09-02 10:41:59 -04:00
|
|
|
rt-async-std = [
|
|
|
|
"veilid-core/rt-async-std",
|
|
|
|
"async-std",
|
2024-07-17 18:58:33 -04:00
|
|
|
"opentelemetry_sdk/rt-async-std",
|
2023-09-02 10:41:59 -04:00
|
|
|
]
|
|
|
|
rt-tokio = [
|
|
|
|
"veilid-core/rt-tokio",
|
|
|
|
"tokio",
|
|
|
|
"tokio-stream",
|
|
|
|
"tokio-util",
|
2024-07-17 18:58:33 -04:00
|
|
|
"opentelemetry_sdk/rt-tokio",
|
2023-09-02 10:41:59 -04:00
|
|
|
"console-subscriber",
|
|
|
|
]
|
2023-06-07 17:39:10 -04:00
|
|
|
tracking = ["veilid-core/tracking"]
|
2023-12-12 16:13:56 -05:00
|
|
|
debug-json-api = []
|
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 }
|
2024-07-17 18:58:33 -04:00
|
|
|
tracing = { version = "^0.1.40", features = ["log", "attributes"] }
|
|
|
|
tracing-subscriber = { version = "^0.3.18", features = ["env-filter"] }
|
|
|
|
tracing-appender = "^0.2.3"
|
|
|
|
tracing-opentelemetry = "^0.24.0"
|
2022-07-14 16:57:34 -04:00
|
|
|
# Buggy: tracing-error = "^0"
|
2024-07-17 18:58:33 -04:00
|
|
|
opentelemetry = { version = "^0.23" }
|
|
|
|
opentelemetry-otlp = { version = "^0.16.0", default-features = false, optional = true }
|
|
|
|
opentelemetry_sdk = "0.23.0"
|
|
|
|
opentelemetry-semantic-conventions = "^0.16.0"
|
|
|
|
async-std = { version = "^1.12.0", features = ["unstable"], optional = true }
|
|
|
|
tokio = { version = "^1.38.1", features = ["full", "tracing"], optional = true }
|
|
|
|
tokio-stream = { version = "^0.1.15", features = ["net"], optional = true }
|
|
|
|
tokio-util = { version = "^0.7.11", features = ["compat"], optional = true }
|
|
|
|
console-subscriber = { version = "^0.3.0", optional = true }
|
|
|
|
async-tungstenite = { version = "^0.27.0", features = ["async-tls"] }
|
|
|
|
color-eyre = { version = "^0.6.3", default-features = false }
|
|
|
|
backtrace = "^0.3.71"
|
|
|
|
clap = { version = "^4.5.9", features = ["derive", "string", "wrap_help"] }
|
|
|
|
directories = "^5.0.1"
|
|
|
|
parking_lot = "^0.12.3"
|
|
|
|
config = { version = "^0.14.0", features = ["yaml"] }
|
|
|
|
cfg-if = "^1.0.0"
|
|
|
|
serde = "^1.0.204"
|
|
|
|
serde_derive = "^1.0.204"
|
|
|
|
serde_yaml = "^0.9.34"
|
2022-11-16 12:49:53 -05:00
|
|
|
json = "^0"
|
2023-09-16 13:52:32 -04:00
|
|
|
futures-util = { version = "^0", default-features = false, features = [
|
2023-09-02 10:41:59 -04:00
|
|
|
"alloc",
|
|
|
|
] }
|
2021-11-22 11:28:30 -05:00
|
|
|
url = "^2"
|
|
|
|
ctrlc = "^3"
|
|
|
|
lazy_static = "^1"
|
2024-03-03 18:38:25 -05:00
|
|
|
bugsalot = { package = "veilid-bugsalot", version = "0.2.0" }
|
2022-03-11 07:35:41 -05:00
|
|
|
flume = { version = "^0", features = ["async"] }
|
2023-09-16 21:56:19 -04:00
|
|
|
rpassword = "^7"
|
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 }
|
2024-03-02 17:45:26 -05:00
|
|
|
sysinfo = { version = "^0.30.6" }
|
2024-04-28 16:15:09 -04:00
|
|
|
wg = { version = "^0.9.1", features = ["future"] }
|
2024-07-03 13:15:59 -04:00
|
|
|
tracing-flame = "0.2.0"
|
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]
|
2024-07-17 18:58:33 -04:00
|
|
|
daemonize = "^0.5.0"
|
|
|
|
signal-hook = "^0.3.17"
|
|
|
|
signal-hook-async-std = "^0.2.2"
|
|
|
|
nix = "^0.29.0"
|
2022-05-16 11:52:48 -04:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2024-07-17 18:58:33 -04:00
|
|
|
tracing-journald = "^0.3.0"
|
2021-11-22 11:28:30 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-07-17 18:58:33 -04:00
|
|
|
serial_test = "^3.1.1"
|