25 lines
552 B
JSON
25 lines
552 B
JSON
|
|
{
|
||
|
|
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.17.2/.schema/devbox.schema.json",
|
||
|
|
"packages": [
|
||
|
|
"rustc@1.97.1",
|
||
|
|
"cargo@1.97.1",
|
||
|
|
"rustfmt@1.97.1",
|
||
|
|
"clippy@1.97.1",
|
||
|
|
"pimsync@0.5.11",
|
||
|
|
"jujutsu@0.44.0",
|
||
|
|
"radicale@3.7.8"
|
||
|
|
],
|
||
|
|
"shell": {
|
||
|
|
"scripts": {
|
||
|
|
"fmt": "cargo fmt --all",
|
||
|
|
"check": [
|
||
|
|
"cargo fmt --all -- --check",
|
||
|
|
"cargo clippy --all-targets -- -D warnings",
|
||
|
|
"cargo test"
|
||
|
|
],
|
||
|
|
"test": "cargo test",
|
||
|
|
"build": "cargo build --release"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|