-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (28 loc) · 796 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (28 loc) · 796 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
[package]
name = "lasertag"
description = "Look for container image updates"
repository = "https://github.com/featherbread/lasertag"
authors = ["Alex Hamlin <alex@alexhamlin.co>"]
version = "0.1.0"
edition = "2024"
[dependencies]
const_format = "0.2.36"
pipecheck = "0.2.0"
[dependencies.clap]
version = "4.6.1"
default-features = false
features = ["cargo", "derive", "help", "std", "suggestions", "usage"]
[dependencies.oci-client]
version = "0.17.0"
default-features = false
features = ["native-tls"]
[patch.crates-io.oci-client]
git = "https://github.com/oras-project/rust-oci-client.git"
branch = "main"
[dependencies.tokio]
version = "1.52.3"
default-features = false
features = ["macros", "rt", "rt-multi-thread"]
[dev-dependencies.rstest]
version = "0.26.1"
default-features = false