forked from bottlerocket-os/bottlerocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 970 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
[package]
name = "migrator"
version = "0.1.0"
authors = ["Tom Kirchner <tjk@amazon.com>"]
license = "Apache-2.0 OR MIT"
edition = "2021"
publish = false
build = "build.rs"
# Don't rebuild crate just because of changes to README.
exclude = ["README.md"]
[dependencies]
bottlerocket-release = { path = "../../../bottlerocket-release", version = "0.1" }
log = "0.4"
lz4 = "1"
nix = "0.24"
pentacle = "1"
rand = { version = "0.8", default-features = false, features = ["std", "std_rng"] }
regex = "1"
semver = "1"
simplelog = "0.12"
snafu = "0.7"
tough = "0.13"
update_metadata = { path = "../../../updater/update_metadata", version = "0.1" }
url = "2"
[build-dependencies]
generate-readme = { version = "0.1", path = "../../../generate-readme" }
[dev-dependencies]
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
storewolf = { path = "../../storewolf", version = "0.1" }
tempfile = "3"
[[bin]]
name = "migrator"
path = "src/main.rs"