Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Content addressable store #37

Merged
merged 15 commits into from
Jul 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# https://github.com/crate-ci/typos
# cargo install typos-cli
# typos

[files]
extend-exclude = []

[default.extend-words]
cafs = "cafs"
159 changes: 134 additions & 25 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@ pacquet_lockfile = { path = "crates/lockfile" }
pacquet_npmrc = { path = "crates/npmrc" }
pacquet_package_manager = { path = "crates/package_manager" }
pacquet_executor = { path = "crates/executor" }
pacquet_cafs = { path = "crates/cafs" }

anyhow = { version = "1.0.71", features = ["backtrace"] }
async-recursion = { version = "1.0.4" }
bytes = { version = "1.4.0" }
clap = { version = "4", features = ["derive"] }
elsa = { version = "1.8.1" }
home = { version = "0.5.5" }
futures-util = { version = "0.3.28" }
miette = { version = "5.9.0", features = ["fancy"] }
reqwest = { version = "0.11", default-features = false, features = [
"json",
"stream",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Experimental package manager for node.js written in rust.

- [x] `.npmrc` support (for supported features [readme.md](./crates/npmrc/README.md))
- [x] CLI commands (for supported features [readme.md](./crates/cli/README.md))
- [ ] Global store support
- [x] Content addressable file store support
- [ ] Shrink-file support in sync with `pnpm-lock.yml`
- [ ] Workspace support
- [ ] Full sync with [pnpm error codes](https://pnpm.io/errors)
Expand Down
Loading