Skip to content

Commit

Permalink
Move resource/autowrap utils from brioche-pack into new crates (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylewlacy authored Jun 26, 2024
1 parent d25e575 commit be6c400
Show file tree
Hide file tree
Showing 14 changed files with 632 additions and 36 deletions.
28 changes: 28 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[workspace]
resolver = "2"
members = [
members = [ "crates/brioche-autowrap",
"crates/brioche-ld",
"crates/brioche-packed-plain-exec",
"crates/brioche-packed-userland-exec",
"crates/brioche-packer",
"crates/brioche-packer", "crates/brioche-resources",
"crates/runnable",
"crates/runnable-core",
"crates/start-runnable",
Expand Down
11 changes: 11 additions & 0 deletions crates/brioche-autowrap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[package]
name = "brioche-autowrap"
version = "0.1.0"
edition = "2021"

[dependencies]
brioche-pack = { workspace = true }
brioche-resources = { path = "../brioche-resources" }
bstr = "1.9.1"
goblin = "0.8.2"
thiserror = "1.0.61"
Loading

0 comments on commit be6c400

Please sign in to comment.