diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2026-03-16 16:28:54 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-16 16:28:54 -0700 |
| commit | a964c27db2a359233bad200a64696b663eca4be5 (patch) | |
| tree | 9370c6f7b541b79d7183dd754a9d6a863f51c1e2 /crates/atuin-nucleo/Cargo.toml | |
| parent | feat: Allow headless account ops against Hub server (#3280) (diff) | |
| parent | vendor nucleo fork into atuin workspace (diff) | |
| download | atuin-a964c27db2a359233bad200a64696b663eca4be5.zip | |
chore: vendor nucleo-ext + fork, so we can depend on our changes properly (#3284)
We cannot publish to crates.io without specifying a version, and we
cannot do that without properly forking nucleo. We're shipping
atuin-nucleo, but will likely drop this if we can get our changes
upstream. This is highlighted in the README + manifest, and the original
author is still included.
Originally forked here: https://github.com/atuinsh/nucleo-ext
cc @BinaryMuse - this should just be a vendor + restructure, but would
appreciate the sanity check
## Checks
- [ ] I am happy for maintainers to push small adjustments to this PR,
to speed up the review cycle
- [ ] I have checked that there are no existing pull requests for the
same thing
Diffstat (limited to 'crates/atuin-nucleo/Cargo.toml')
| -rw-r--r-- | crates/atuin-nucleo/Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/crates/atuin-nucleo/Cargo.toml b/crates/atuin-nucleo/Cargo.toml new file mode 100644 index 00000000..cd53e578 --- /dev/null +++ b/crates/atuin-nucleo/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "atuin-nucleo" +description = "A fork of helix-editor/nucleo with filtering and custom scoring for Atuin" +authors = ["Pascal Kuthe <pascalkuthe@pm.me>", "Michelle Tilley <michelle@atuin.sh>"] +version = "0.6.0" +edition = "2021" +license = "MPL-2.0" +repository = "https://github.com/atuinsh/atuin" +readme = "README.md" +exclude = ["/typos.toml", "/tarpaulin.toml"] + +[lib] + +[dependencies] +atuin-nucleo-matcher = { version = "0.3.1", path = "matcher" } +parking_lot = { version = "0.12.1", features = ["send_guard", "arc_lock"] } +rayon = "1.7.0" |
