{
  "name": "v7-mawu-gateway",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/v7/mawu-gateway/src",
  "projectType": "application",
  "tags": ["scope:v7", "layer:service", "type:rust-app"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "cache": true,
      "options": {
        "command": "cargo build --manifest-path apps/v7/Cargo.toml -p mawu-gateway"
      },
      "inputs": ["v7Production", "^v7Production"],
      "dependsOn": ["^build"]
    },
    "lint": {
      "executor": "nx:run-commands",
      "cache": true,
      "options": {
        "command": "cargo fmt --manifest-path apps/v7/mawu-gateway/Cargo.toml -- --check"
      },
      "inputs": ["v7Production"]
    },
    "test": {
      "executor": "nx:run-commands",
      "cache": true,
      "options": {
        "command": "cargo test --manifest-path apps/v7/Cargo.toml -p mawu-gateway"
      },
      "inputs": ["v7Test", "^v7Production"]
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "cache": true,
      "options": {
        "command": "cargo check --manifest-path apps/v7/Cargo.toml -p mawu-gateway"
      },
      "inputs": ["v7Production", "^v7Production"]
    }
  }
}
