UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

5 lines (4 loc) 343 B
import type { CargoLockSchema } from './schema'; export declare function extractLockFileVersions(lockFilePath: string): Promise<Map<string, string[]> | null>; export declare function extractLockFileContentVersions(content: string): Map<string, string[]> | null; export declare function parseLockFile(lockFile: string): CargoLockSchema | null;