Back to Moon

Migrate

website/docs/__partials__/migrate/rust/migrate.mdx

2.3.2901 B
Original Source
yaml
language: 'rust'

fileGroups:
  sources:
    - 'src/**/*'
  tests:
    - 'benches/**/*'
    - 'tests/**/*'

tasks:
  build:
    command: 'cargo build'
    inputs:
      - '@globs(sources)'
      - 'Cargo.toml'
  dev:
    command: 'cargo run'
    inputs:
      - '@globs(sources)'
      - 'Cargo.toml'
    preset: 'server'
  format:
    command: 'cargo fmt --all --check'
    inputs:
      - '@globs(sources)'
      - '@globs(tests)'
      - 'Cargo.toml'
  lint:
    command: 'cargo clippy --workspace --all-targets'
    inputs:
      - '@globs(sources)'
      - '@globs(tests)'
      - 'Cargo.toml'
  test:
    command: 'cargo test --workspace'
    inputs:
      - '@globs(sources)'
      - '@globs(tests)'
      - 'Cargo.toml'
  typecheck:
    command: 'cargo check --workspace'
    inputs:
      - '@globs(sources)'
      - '@globs(tests)'
      - 'Cargo.toml'