-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
48 lines (43 loc) · 1.72 KB
/
Cargo.toml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "systemfd"
version = "0.4.4"
authors = ["Armin Ronacher <[email protected]>"]
description = "A convenient helper for passing sockets into another process. Best to be combined with listenfd and cargo-watch."
keywords = ["socket", "listenfd", "systemd", "socketactivation", "cargo-watch"]
homepage = "https://github.com/mitsuhiko/systemfd"
repository = "https://github.com/mitsuhiko/systemfd"
readme = "README.md"
license = "Apache-2.0"
edition = "2018"
rust-version = "1.64.0"
[dependencies]
clap = { version = "4.0.0", features = ["std", "help", "wrap_help"], default-features = false }
regex = { version = "1.9.0", features = ["std"], default-features = false }
lazy_static = "1.4.0"
console = "0.15.8"
anyhow = "1.0.52"
[target."cfg(unix)".dependencies]
nix = { version = "0.26.0", features = ["net", "process"], default-features = false }
libc = "0.2.74"
[target."cfg(windows)".dependencies]
socket2 = "0.5.7"
uuid = { version = "1.1.0", features = ["v4"] }
windows-sys = { version = "0.52.0", features = ["Win32_Networking_WinSock"] }
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.12.0"
# CI backends to support
ci = ["github"]
# The installers to generate for each app
installers = ["shell", "powershell"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
# Publish jobs to run in CI
pr-run-mode = "plan"
# Whether to install an updater program
install-updater = false