fix: use renamed package
This commit is contained in:
Generated
+2
-2
@@ -258,7 +258,7 @@ dependencies = [
|
||||
"getrandom 0.3.4",
|
||||
"hex",
|
||||
"humansize",
|
||||
"libarchive",
|
||||
"libarchive-drop",
|
||||
"rcgen",
|
||||
"ring",
|
||||
"serde",
|
||||
@@ -465,7 +465,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
||||
|
||||
[[package]]
|
||||
name = "libarchive"
|
||||
name = "libarchive-drop"
|
||||
version = "0.1.1"
|
||||
dependencies = [
|
||||
"libarchive3-sys",
|
||||
|
||||
@@ -29,7 +29,7 @@ uuid = { version = "1.19.0", features = ["v4"] }
|
||||
sha2 = "0.10.9"
|
||||
futures = "0.3.31"
|
||||
getrandom = "0.3.4"
|
||||
libarchive = { version = "*", path = "./libarchive-rust" }
|
||||
libarchive-drop = { version = "*", path = "./libarchive-rust" }
|
||||
speedometer = "0.2.2"
|
||||
|
||||
[dependencies.x509-parser]
|
||||
|
||||
Submodule libraries/droplet/libarchive-rust updated: 279fd5f727...c694faba63
@@ -7,7 +7,7 @@ pub mod versions;
|
||||
pub mod manifest;
|
||||
pub mod vm;
|
||||
|
||||
extern crate libarchive;
|
||||
extern crate libarchive_drop;
|
||||
|
||||
#[cfg(test)]
|
||||
pub mod tests;
|
||||
|
||||
@@ -2,7 +2,7 @@ use std::{path::PathBuf, task::Poll};
|
||||
|
||||
use anyhow::{anyhow};
|
||||
use async_trait::async_trait;
|
||||
use libarchive::{
|
||||
use libarchive_drop::{
|
||||
archive::{Entry, FileType, ReadCompression, ReadFormat},
|
||||
reader::{Builder, FileReader, Reader},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user