Connect applications to schemes, filetypes, and more on macOS (more to come)
2
fork

Configure Feed

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

Removed tokio from depedencies

-74
-64
Cargo.lock
··· 314 314 "eyre", 315 315 "infat-lib", 316 316 "nerdicons_rs", 317 - "tokio", 318 317 "tracing", 319 318 ] 320 319 ··· 335 334 "toml", 336 335 "tracing", 337 336 "tracing-subscriber", 338 - ] 339 - 340 - [[package]] 341 - name = "io-uring" 342 - version = "0.7.10" 343 - source = "registry+https://github.com/rust-lang/crates.io-index" 344 - checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b" 345 - dependencies = [ 346 - "bitflags", 347 - "cfg-if", 348 - "libc", 349 337 ] 350 338 351 339 [[package]] ··· 419 407 checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 420 408 dependencies = [ 421 409 "adler2", 422 - ] 423 - 424 - [[package]] 425 - name = "mio" 426 - version = "1.0.4" 427 - source = "registry+https://github.com/rust-lang/crates.io-index" 428 - checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" 429 - dependencies = [ 430 - "libc", 431 - "wasi", 432 - "windows-sys 0.59.0", 433 410 ] 434 411 435 412 [[package]] ··· 673 650 ] 674 651 675 652 [[package]] 676 - name = "slab" 677 - version = "0.4.11" 678 - source = "registry+https://github.com/rust-lang/crates.io-index" 679 - checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 680 - 681 - [[package]] 682 653 name = "smallvec" 683 654 version = "1.15.1" 684 655 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 762 733 ] 763 734 764 735 [[package]] 765 - name = "tokio" 766 - version = "1.47.1" 767 - source = "registry+https://github.com/rust-lang/crates.io-index" 768 - checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" 769 - dependencies = [ 770 - "backtrace", 771 - "io-uring", 772 - "libc", 773 - "mio", 774 - "pin-project-lite", 775 - "slab", 776 - "tokio-macros", 777 - ] 778 - 779 - [[package]] 780 - name = "tokio-macros" 781 - version = "2.5.0" 782 - source = "registry+https://github.com/rust-lang/crates.io-index" 783 - checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 784 - dependencies = [ 785 - "proc-macro2", 786 - "quote", 787 - "syn", 788 - ] 789 - 790 - [[package]] 791 736 name = "toml" 792 737 version = "0.8.23" 793 738 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 943 888 version = "0.52.0" 944 889 source = "registry+https://github.com/rust-lang/crates.io-index" 945 890 checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 946 - dependencies = [ 947 - "windows-targets 0.52.6", 948 - ] 949 - 950 - [[package]] 951 - name = "windows-sys" 952 - version = "0.59.0" 953 - source = "registry+https://github.com/rust-lang/crates.io-index" 954 - checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 955 891 dependencies = [ 956 892 "windows-targets 0.52.6", 957 893 ]
-9
Cargo.toml
··· 10 10 # CLI and config 11 11 clap = { version = "4.5", features = ["derive"] } 12 12 toml = "0.8" 13 - serde = { version = "1.0", features = ["derive"] } 14 - 15 - # Error handling 16 - thiserror = "1.0" 17 13 eyre = "0.6" 18 14 color-eyre = "0.6" 19 15 20 16 # Logging 21 17 tracing = "0.1" 22 - tracing-subscriber = { version = "0.3", features = ["env-filter"] } 23 - 24 - # macOS system integration 25 - core-foundation = "0.10" 26 - core-services = "0.2"
-1
infat-cli/Cargo.toml
··· 13 13 [dependencies] 14 14 infat-lib = { path = "../infat-lib" } 15 15 clap = { workspace = true } 16 - tokio = { version = "1.0", features = ["rt-multi-thread", "macros"] } 17 16 eyre = { workspace = true } 18 17 color-eyre = { workspace = true } 19 18 tracing = { workspace = true }