Skip to content

Commit

Permalink
Basic bundler
Browse files Browse the repository at this point in the history
  • Loading branch information
laurmaedje committed Jun 26, 2023
1 parent 0c0e02d commit f0e0d27
Show file tree
Hide file tree
Showing 4 changed files with 421 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ desktop.ini

# Deployment
/dist

# Rust
/bundler/target
314 changes: 314 additions & 0 deletions bundler/Cargo.lock

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

12 changes: 12 additions & 0 deletions bundler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
name = "bundler"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
anyhow = "1"
flate2 = "1"
serde = { version = "1", features = ["derive"] }
tar = "0.4"
toml = { version = "0.7.3", default-features = false, features = ["parse"] }
Loading

0 comments on commit f0e0d27

Please sign in to comment.