forked from bottlerocket-os/bottlerocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 810 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (33 loc) · 810 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
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 = "2018"
publish = false
build = "build.rs"
# Don't rebuild crate just because of changes to README.
exclude = ["README.md"]
[dependencies]
bottlerocket-release = { path = "../../../bottlerocket-release" }
log = "0.4"
lz4 = "1.23.1"
nix = "0.18"
pentacle = "0.2.0"
rand = { version = "0.7", default-features = false, features = ["std"] }
regex = "1.1"
semver = "0.10"
simplelog = "0.8"
snafu = "0.6"
tempfile = "3.1.0"
tough = "0.8"
update_metadata = { path = "../../../updater/update_metadata" }
url = "2.1.1"
[build-dependencies]
cargo-readme = "3.1"
[dev-dependencies]
chrono = "0.4.11"
storewolf = { path = "../../storewolf" }
[[bin]]
name = "migrator"
path = "src/main.rs"