forked from Azure/azure-init
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (36 loc) · 881 Bytes
/
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
[package]
name = "azure-init"
version = "0.1.1"
edition = "2021"
repository = "https://github.com/Azure/azure-init/"
homepage = "https://github.com/Azure/azure-init/"
license = "MIT"
readme = "README.md"
description = "A reference implementation for provisioning Linux VMs on Azure."
[dependencies]
exitcode = "1.1.2"
anyhow = "1.0.81"
tokio = { version = "1", features = ["full"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing = "0.1.40"
[dependencies.libazureinit]
path = "libazureinit"
version = "0.1.0"
[profile.dev]
incremental = true
[[bin]]
name = "azure-init"
path = "src/main.rs"
[[bin]]
name = "functional_tests"
path = "tests/functional_tests.rs"
[workspace]
members = [
"libazureinit",
]
[features]
passwd = []
hostnamectl = []
useradd = []
systemd_linux = ["passwd", "hostnamectl", "useradd"]
default = ["systemd_linux"]