-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add package download & unpacking #48
Conversation
TODO: This doesn't handle any db caching that needs to be done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good stuff =) minor fixes for spdx is all
@@ -0,0 +1,26 @@ | |||
use bytes::Bytes; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing spdx headers
@@ -0,0 +1,233 @@ | |||
use std::{io, path::PathBuf}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing spdx headers
/// Shared client for tcp socket reuse and connection limit | ||
static CLIENT: Lazy<reqwest::Client> = Lazy::new(|| { | ||
reqwest::ClientBuilder::new() | ||
.user_agent(concat!( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lol nice :D
TODO: This doesn't handle any db caching that needs to be done