mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

* Remove deprecated `and_hms()` * Update chrono * Update licenses and fix script * Remove deprecated Date struct * Remove chrono pin * Skip format check on .vscode Was failing for no reason. * Replace deprecated chrono functions * Add cargo-deny to update-licenses & pin versions (dae) * Remove time 0.1 dependency (dae) We don't need to wait for chrono 0.5; it was provided behind a legacy feature flag.
7 lines
233 B
Bash
Executable file
7 lines
233 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cargo install cargo-license@0.5.1
|
|
cargo-license --features rustls --features native-tls --json --manifest-path ../rslib/Cargo.toml >licenses.json
|
|
|
|
cargo install cargo-deny@0.13.5
|
|
(cd .. && cargo deny check -A duplicate)
|