-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 739 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "tailsrv"
version = "0.9.3"
description = "A high-performance file-streaming server"
readme = "README.md"
repository = "https://github.com/asayers/tailsrv"
license = "Unlicense"
authors = ["Alex Sayers <alex@asayers.com>"]
edition = "2024"
[dependencies]
bpaf = { version = "0.9.16", features = ["derive"] }
rustix = { version = "0.38.44", features = ["fs", "mm", "pipe"] }
rustix-uring = "0.2.0"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
tracing-journald = { version = "0.3", optional = true }
sd-notify = { version = "0.4", optional = true }
[dev-dependencies]
fd-lock = "4.0.2"
liveterm = "0.3.0"
net2 = "0.2.39"
[features]
systemd = ["tracing-journald", "sd-notify"]