-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 1.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "awesome-rust",
"private": true,
"description": "Rust prototypes.",
"repository": "https://github.com/sabertazimi/awesome-rust",
"author": "sabertazimi <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"build": "cargo build --release",
"deps": "cargo install mdbook cargo-edit cargo-release cargo-workspace",
"dev:basis": "cargo run -p basis",
"dev:rustlings": "cd crates/rustlings && cargo run -- watch",
"docs": "pnpm docs:book && pnpm docs:api",
"docs:book": "mdbook build",
"docs:api": "cargo doc --workspace --no-deps && mv target/doc book/",
"e2e": "pnpm e2e:basis && pnpm e2e:rustlings",
"e2e:basis": "cargo run -p basis --release",
"e2e:rustlings": "cd crates/rustlings && cargo run --release -- verify",
"format": "cargo fmt && cargo clippy --fix --allow-dirty --allow-staged",
"lint": "cargo fmt --check && cargo clippy --all-targets --release --locked -- -D clippy::all",
"prelease": "cargo release",
"release": "cargo release -x",
"start": "pnpm dev:rustlings",
"test": "cargo test"
}
}