Skip to content

Commit

Permalink
Add parcel config crate (#9700)
Browse files Browse the repository at this point in the history
  • Loading branch information
MonicaOlejniczak committed May 7, 2024
1 parent 6dfeb9c commit 6faf7b2
Show file tree
Hide file tree
Showing 16 changed files with 2,701 additions and 19 deletions.
204 changes: 187 additions & 17 deletions Cargo.lock

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

19 changes: 19 additions & 0 deletions crates/parcel_config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[package]
authors = ["Monica Olejniczak <monica.j.olejniczak@gmail.com>", "Devon Govett <devongovett@gmail.com>"]
name = "parcel_config"
version = "0.1.0"
edition = "2021"

[dependencies]
derive_builder = "0.20.0"
glob-match = "0.2.1"
indexmap = { version = "2.2.6", features = ["serde", "std"] }
parcel_filesystem = { path = "../parcel_filesystem" }
parcel_package_manager = { path = "../parcel_package_manager" }
pathdiff = "0.2.1"
serde = { version = "1.0.123", features = ["derive"] }
serde_json5 = "0.1.0"
thiserror = "1.0.59"

[dev_dependencies]
mockall = "0.12.1"

0 comments on commit 6faf7b2

Please sign in to comment.