forked from pop-os/distinst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
74 lines (68 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "distinst"
version = "0.5.0"
description = "Distribution Installer Backend"
repository = "https://github.com/pop-os/distinst"
categories = ["os::unix-apis"]
keywords = ["linux", "distribution", "installer"]
authors = [
"Jeremy Soller <[email protected]>",
"Michael Aaron Murphy <[email protected]>"
]
license = "LGPL-3.0"
readme = "README.md"
edition = "2018"
[workspace]
members = [
"cli",
"crates/*",
"ffi",
]
[lib]
name = "distinst"
crate-type = ["lib"]
[dev-dependencies]
pbr = "1.0.2"
[dependencies]
cascade = "1.0"
dirs = "3.0"
disk-types = { path = "crates/disk-types"}
distinst-bootloader = { path = "crates/bootloader" }
distinst-chroot = { path = "crates/chroot" }
distinst-disks = { path = "crates/disks" }
distinst-external-commands = { path = "crates/external" }
distinst-hardware-support = { path = "crates/hardware" }
distinst-locale-support = { path = "crates/locales" }
distinst-squashfs = { path = "crates/squashfs" }
distinst-timezones = { path = "crates/timezones" }
distinst-utils = { path = "crates/utils" }
envfile = "0.2.1"
fern = "0.6.0"
fomat-macros = "0.3"
fstab-generate = { path = "crates/fstab-generate" }
hostname-validator = "1.0.0"
itertools = "0.10.0"
libc = "0.2.68"
libparted = "0.1.4"
log = "0.4.8"
logind-dbus = "0.1.1"
os-detect = { path = "crates/os-detect" }
os-release = "0.1.0"
partition-identity = "0.2.8"
proc-mounts = "0.2.4"
rayon = "1.3.0"
sys-mount = "1.2.1"
tempdir = "0.3.7"
bitflags = "1.2.1"
err-derive = "0.3"
apt-cli-wrappers = { git = "https://github.com/pop-os/apt-cli-wrappers" }
systemd-boot-conf = "0.2.1"
derive_more = "0.99.5"
anyhow = "1.0.28"
failure_derive = "0.1.7"
[dependencies.failure]
version = "0.1.7"
default-features = false
features = ["derive"]
[profile.release]
debug = true