Skip to content

Commit

Permalink
Merge pull request #161 from kinode-dao/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
nick1udwig authored Jun 10, 2024
2 parents 784dda5 + d55cf3c commit 78a41ef
Show file tree
Hide file tree
Showing 98 changed files with 3,151 additions and 554 deletions.
655 changes: 546 additions & 109 deletions Cargo.lock

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kit"
version = "0.5.3"
version = "0.6.0"
edition = "2021"

[build-dependencies]
Expand All @@ -15,7 +15,7 @@ dirs = "5.0"
fs-err = "2.11"
futures-util = "0.3"
hex = "0.4"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib.git", rev = "84b3d84" }
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib.git", rev = "7eb3a04" }
nix = { version = "0.27", features = ["process", "signal", "term"] }
procfs = "0.16"
regex = "1"
Expand Down Expand Up @@ -43,6 +43,7 @@ tracing-appender = "0.2"
tracing-error = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "std"] }
walkdir = "2.4"
wit-bindgen = "0.24.0"
zip = "0.6"

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion src/boot_fake_node/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ struct Asset {
}

#[instrument(level = "trace", skip_all)]
fn extract_zip(archive_path: &Path) -> Result<()> {
pub fn extract_zip(archive_path: &Path) -> Result<()> {
let file = fs::File::open(archive_path)?;
let mut archive = ZipArchive::new(file)?;

Expand Down
Loading

0 comments on commit 78a41ef

Please sign in to comment.