]> git.proxmox.com Git - proxmox.git/commit
initial commit
authorFabian Ebner <f.ebner@proxmox.com>
Wed, 23 Jun 2021 13:38:54 +0000 (15:38 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 23 Jun 2021 14:00:30 +0000 (16:00 +0200)
commitb6be0f394012dce1b30c5e59af12869649eb2d2b
treee9f56c6380f8eb7955816f481dd0c4ffa9aca151
initial commit

Signed-off-by: Fabian Ebner <f.ebner@proxmox.com>
29 files changed:
.cargo/config [new file with mode: 0644]
.gitignore [new file with mode: 0644]
Cargo.toml [new file with mode: 0644]
rustfmt.toml [new file with mode: 0644]
src/lib.rs [new file with mode: 0644]
src/repositories/file.rs [new file with mode: 0644]
src/repositories/file/list_parser.rs [new file with mode: 0644]
src/repositories/file/sources_parser.rs [new file with mode: 0644]
src/repositories/mod.rs [new file with mode: 0644]
src/repositories/repository.rs [new file with mode: 0644]
tests/repositories.rs [new file with mode: 0644]
tests/sources.list.d.expected/absolute_suite.list [new file with mode: 0644]
tests/sources.list.d.expected/absolute_suite.sources [new file with mode: 0644]
tests/sources.list.d.expected/case.sources [new file with mode: 0644]
tests/sources.list.d.expected/multiline.sources [new file with mode: 0644]
tests/sources.list.d.expected/options_comment.list [new file with mode: 0644]
tests/sources.list.d.expected/pbs-enterprise.list [new file with mode: 0644]
tests/sources.list.d.expected/pve.list [new file with mode: 0644]
tests/sources.list.d.expected/standard.list [new file with mode: 0644]
tests/sources.list.d.expected/standard.sources [new file with mode: 0644]
tests/sources.list.d/absolute_suite.list [new file with mode: 0644]
tests/sources.list.d/absolute_suite.sources [new file with mode: 0644]
tests/sources.list.d/case.sources [new file with mode: 0644]
tests/sources.list.d/multiline.sources [new file with mode: 0644]
tests/sources.list.d/options_comment.list [new file with mode: 0644]
tests/sources.list.d/pbs-enterprise.list [new file with mode: 0644]
tests/sources.list.d/pve.list [new file with mode: 0644]
tests/sources.list.d/standard.list [new file with mode: 0644]
tests/sources.list.d/standard.sources [new file with mode: 0644]