CargoTOML: {
    dependencies: Record<string, {
        path?: string;
    }>;
    package: {
        name: string;
    };
}

The parts of Cargo.toml which the compiler needs to be aware of.

Type declaration

  • dependencies: Record<string, {
        path?: string;
    }>
  • package: {
        name: string;
    }
    • name: string

Generated using TypeDoc