1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2024-11-21 14:41:09 +00:00

Check for unused deps

This commit is contained in:
Felix Ableitner 2024-10-31 11:12:16 +01:00
parent 0f0cf25b3c
commit 6379ab24de
3 changed files with 7 additions and 33 deletions

View file

@ -40,6 +40,13 @@ steps:
- IGNORED=$(git ls-files --cached -i --exclude-standard) - IGNORED=$(git ls-files --cached -i --exclude-standard)
- if [[ "$IGNORED" ]]; then echo "Ignored files present:\n$IGNORED\n"; exit 1; fi - if [[ "$IGNORED" ]]; then echo "Ignored files present:\n$IGNORED\n"; exit 1; fi
cargo_shear:
image: *rust_image
commands:
- *install_binstall
- cargo binstall -y cargo-shear
- cargo shear
check_diesel_schema: check_diesel_schema:
image: willsquire/diesel-cli image: willsquire/diesel-cli
environment: environment:

31
Cargo.lock generated
View file

@ -585,16 +585,6 @@ dependencies = [
"wasm-bindgen", "wasm-bindgen",
] ]
[[package]]
name = "console_log"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be8aed40e4edbf4d3b4431ab260b63fdc40f5780a4766824329ea0f1eefe3c0f"
dependencies = [
"log",
"web-sys",
]
[[package]] [[package]]
name = "const-oid" name = "const-oid"
version = "0.9.6" version = "0.9.6"
@ -1792,7 +1782,6 @@ dependencies = [
"chrono", "chrono",
"config", "config",
"console_error_panic_hook", "console_error_panic_hook",
"console_log",
"diesel", "diesel",
"diesel-derive-newtype", "diesel-derive-newtype",
"diesel_migrations", "diesel_migrations",
@ -1802,7 +1791,6 @@ dependencies = [
"env_logger", "env_logger",
"futures", "futures",
"hex", "hex",
"include_dir",
"jsonwebtoken", "jsonwebtoken",
"katex", "katex",
"leptos", "leptos",
@ -1863,25 +1851,6 @@ dependencies = [
"unicode-normalization", "unicode-normalization",
] ]
[[package]]
name = "include_dir"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "923d117408f1e49d914f1a379a309cffe4f18c05cf4e3d12e613a15fc81bd0dd"
dependencies = [
"include_dir_macros",
]
[[package]]
name = "include_dir_macros"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7cab85a7ed0bd5f0e76d93846e0147172bed2e2d3f859bcc33a8d9699cad1a75"
dependencies = [
"proc-macro2",
"quote",
]
[[package]] [[package]]
name = "indexmap" name = "indexmap"
version = "2.6.0" version = "2.6.0"

View file

@ -93,7 +93,6 @@ tracing = "0.1.40"
once_cell = "1.20.1" once_cell = "1.20.1"
wasm-bindgen = "0.2.93" wasm-bindgen = "0.2.93"
console_error_panic_hook = "0.1.7" console_error_panic_hook = "0.1.7"
console_log = "1.0.0"
time = "0.3.36" time = "0.3.36"
tower = "0.5.1" tower = "0.5.1"
markdown-it = "0.6.1" markdown-it = "0.6.1"
@ -103,7 +102,6 @@ doku = "0.21.1"
smart-default = "0.7.1" smart-default = "0.7.1"
tower-layer = "0.3.3" tower-layer = "0.3.3"
katex = { version = "0.4", default-features = false } katex = { version = "0.4", default-features = false }
include_dir = "0.7.4"
markdown-it-block-spoiler = "1.0.0" markdown-it-block-spoiler = "1.0.0"
markdown-it-heading-anchors = "0.3.0" markdown-it-heading-anchors = "0.3.0"
markdown-it-footnote = "0.2.0" markdown-it-footnote = "0.2.0"