This repository has no description
0

Configure Feed

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

➖ Remove a bunch of now-unused dependencies

+1 -44
-40
Cargo.lock
··· 788 788 ] 789 789 790 790 [[package]] 791 - name = "docopt" 792 - version = "1.1.1" 793 - source = "registry+https://github.com/rust-lang/crates.io-index" 794 - checksum = "7f3f119846c823f9eafcf953a8f6ffb6ed69bf6240883261a7f13b634579a51f" 795 - dependencies = [ 796 - "lazy_static", 797 - "regex", 798 - "serde", 799 - "strsim", 800 - ] 801 - 802 - [[package]] 803 791 name = "easing-function" 804 792 version = "0.1.1" 805 793 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1045 1033 ] 1046 1034 1047 1035 [[package]] 1048 - name = "futures-macro" 1049 - version = "0.3.31" 1050 - source = "registry+https://github.com/rust-lang/crates.io-index" 1051 - checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 1052 - dependencies = [ 1053 - "proc-macro2", 1054 - "quote", 1055 - "syn 2.0.108", 1056 - ] 1057 - 1058 - [[package]] 1059 1036 name = "futures-task" 1060 1037 version = "0.3.31" 1061 1038 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1068 1045 checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 1069 1046 dependencies = [ 1070 1047 "futures-core", 1071 - "futures-macro", 1072 1048 "futures-task", 1073 1049 "pin-project-lite", 1074 1050 "pin-utils", 1075 - "slab", 1076 1051 ] 1077 1052 1078 1053 [[package]] ··· 1548 1523 "euclid", 1549 1524 "smallvec", 1550 1525 ] 1551 - 1552 - [[package]] 1553 - name = "lazy_static" 1554 - version = "1.5.0" 1555 - source = "registry+https://github.com/rust-lang/crates.io-index" 1556 - checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1557 1526 1558 1527 [[package]] 1559 1528 name = "lazycell" ··· 2649 2618 "backtrace", 2650 2619 "chrono", 2651 2620 "console 0.16.1", 2652 - "docopt", 2653 2621 "easing-function", 2654 2622 "env_logger", 2655 - "futures-util", 2656 2623 "getrandom 0.2.16", 2657 - "indexmap", 2658 2624 "indicatif", 2659 2625 "insta", 2660 2626 "itertools 0.14.0", ··· 2801 2767 dependencies = [ 2802 2768 "float-cmp", 2803 2769 ] 2804 - 2805 - [[package]] 2806 - name = "strsim" 2807 - version = "0.10.0" 2808 - source = "registry+https://github.com/rust-lang/crates.io-index" 2809 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2810 2770 2811 2771 [[package]] 2812 2772 name = "strum"
+1 -4
Cargo.toml
··· 48 48 ], optional = true } 49 49 anyhow = "1.0.100" 50 50 chrono = "0.4.42" 51 - docopt = "1.1.1" 52 51 indicatif = "0.18.2" 53 52 itertools = "0.14.0" 54 53 midly = "0.5.3" ··· 82 81 env_logger = { version = "0.11.8", optional = true } 83 82 log = "0.4.28" 84 83 rayon = "1.11.0" 85 - futures-util = "0.3.31" 86 84 ws = { version = "0.9.2", optional = true } 87 85 toml = "0.9.8" 88 - indexmap = "2.12.0" 89 86 serde = { version = "1.0.228", features = ["derive"] } 90 87 url = "2.5.7" 91 88 tungstenite = { version = "0.28.0", optional = true } 92 89 axum = { version = "0.8.6", optional = true, features = ["json"] } 93 - quick-xml = "0.38.3" 94 90 vgv = { git = "https://github.com/gwennlbh/vgvf", version = "0.1.0", optional = true } 95 91 serde-aux = "4.7.0" 96 92 notify-rust = { version = "4.11.7", optional = true } 97 93 tokio = { version = "1.48.0", optional = true } 98 94 easing-function = { version = "0.1.1", optional = true } 95 + quick-xml = "0.38.3" 99 96 100 97 101 98 [dev-dependencies]