diff options
| author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-02-23 07:56:34 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-23 07:56:34 +0530 |
| commit | f49abcc1ac3de72bf894ccfc0102d83ec19f1d46 (patch) | |
| tree | 8a50b03bb1e1d2e9e8831620529ef328a5582041 /Cargo.lock | |
| parent | ae703041b1921affb7fa8a0aa865c6f302c72d6e (diff) | |
feat(publish): respect .gitignore during `deno publish` (#22514)
Files from `.gitignore`, global git config, `.git/info/exclude` and
`deno.json`'s `exclude` are ignored.
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index 1cb8c9d48..5e6d1ee4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -500,6 +500,16 @@ dependencies = [ ] [[package]] +name = "bstr" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c" +dependencies = [ + "memchr", + "serde", +] + +[[package]] name = "bumpalo" version = "3.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1060,6 +1070,7 @@ dependencies = [ "glibc_version", "glob", "hex", + "ignore", "import_map", "indexmap", "jsonc-parser", @@ -2848,6 +2859,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" [[package]] +name = "globset" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1" +dependencies = [ + "aho-corasick", + "bstr", + "log", + "regex-automata", + "regex-syntax", +] + +[[package]] name = "glow" version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -3315,6 +3339,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed" [[package]] +name = "ignore" +version = "0.4.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492" +dependencies = [ + "globset", + "lazy_static", + "log", + "memchr", + "regex", + "same-file", + "thread_local", + "walkdir", + "winapi-util", +] + +[[package]] name = "image" version = "0.24.7" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -6483,6 +6524,16 @@ dependencies = [ ] [[package]] +name = "thread_local" +version = "1.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" +dependencies = [ + "cfg-if", + "once_cell", +] + +[[package]] name = "time" version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" |
