A file-based task manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove unused dep

-38
-37
Cargo.lock
··· 447 447 ] 448 448 449 449 [[package]] 450 - name = "is-docker" 451 - version = "0.2.0" 452 - source = "registry+https://github.com/rust-lang/crates.io-index" 453 - checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3" 454 - dependencies = [ 455 - "once_cell", 456 - ] 457 - 458 - [[package]] 459 - name = "is-wsl" 460 - version = "0.4.0" 461 - source = "registry+https://github.com/rust-lang/crates.io-index" 462 - checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5" 463 - dependencies = [ 464 - "is-docker", 465 - "once_cell", 466 - ] 467 - 468 - [[package]] 469 450 name = "is_terminal_polyfill" 470 451 version = "1.70.2" 471 452 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 583 564 version = "1.70.2" 584 565 source = "registry+https://github.com/rust-lang/crates.io-index" 585 566 checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" 586 - 587 - [[package]] 588 - name = "open" 589 - version = "5.3.4" 590 - source = "registry+https://github.com/rust-lang/crates.io-index" 591 - checksum = "9f3bab717c29a857abf75fcef718d441ec7cb2725f937343c734740a985d37fd" 592 - dependencies = [ 593 - "is-wsl", 594 - "libc", 595 - "pathdiff", 596 - ] 597 - 598 - [[package]] 599 - name = "pathdiff" 600 - version = "0.2.3" 601 - source = "registry+https://github.com/rust-lang/crates.io-index" 602 - checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" 603 567 604 568 [[package]] 605 569 name = "percent-encoding" ··· 848 812 "edit", 849 813 "git2", 850 814 "itertools", 851 - "open", 852 815 "tempfile", 853 816 "thiserror", 854 817 "url",
-1
Cargo.toml
··· 25 25 url = "2" 26 26 xattr = "1" 27 27 colored = "3" 28 - open = "5" 29 28 itertools = "0" 30 29 git2 = { version = "0.20", default-features = false } 31 30 zip = { version = "8", default-features = false, features = ["deflate"] }