Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ regex = "1.3"
bytes = "1"
# gzip (de)compression
flate2 = "1.0"
# tar archive reading
tar = "0"
# RSA signature and SHA256 checksum verification
ring = "0.17"
# PEM -> DER conversion
Expand All @@ -40,6 +42,10 @@ http-auth-basic = "0.3"
base16 = { version = "0.2", features = ["alloc"] }
# Protobuf runtime
prost = "0.13.5"
# utf-8 only paths
camino = "1"
# computation of archive hashes
sha2 = "0.10.9"

[dev-dependencies]
# HTTP client
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ mod proto;
mod tests;

pub mod version;
pub mod metatdata;

use crate::proto::{signed::Signed, versions::Versions};
use bytes::buf::Buf;
Expand Down
Loading