-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
42 lines (31 loc) · 836 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
[package]
name = "portfolio-core"
version = "0.0.0"
authors = ["Wayne Warren <[email protected]>"]
description = "placeholder for Registry API implementation in rust"
repository = "https://github.com/waynr/portfolio"
license = "MIT OR Apache-2.0"
edition = "2021"
[lib]
name = "portfolio_core"
path = "src/lib.rs"
[dependencies]
hyper = { version = "0.14", features = [ "full" ] }
uuid = { version = "1.4", features = [ "v4" ] }
bytes = "1.5"
async-trait = "0.1.56"
futures-core = "0.3"
futures = "0.3"
pin-project = "1"
sha2 = { version = "0.10", features = [ "compress" ] }
digest = { version = "0.10" }
regex = "1.9"
once_cell = "1.4"
thiserror = "1"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
tracing = "0.1"
# OCI & Distribution Spec
oci-spec = "0.6"
[dev-dependencies]
rstest = "0.17.0"