diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2023-12-12 00:00:00 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2023-12-12 00:00:00 +0000 |
| commit | 3e52ecb609f8424cffb2e6398c599aa78224825a (patch) | |
| tree | 5c199510c10e206d6c6801dbabdae9691c03341c /Cargo.lock | |
| parent | 6d3c9218d2d3320f5d7fb9b9ede8750e947b70e8 (diff) | |
feat(claim) create yaml add maintainers and relays
- create yaml file with maintainers and relays
- add maintainers to repo event
- add current user as maintainer
- custom repo relays from cli argument
- save git-server in repo event
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 20 |
1 files changed, 20 insertions, 0 deletions
| @@ -1601,6 +1601,7 @@ dependencies = [ | |||
| 1601 | "scrypt", | 1601 | "scrypt", |
| 1602 | "serde", | 1602 | "serde", |
| 1603 | "serde_json", | 1603 | "serde_json", |
| 1604 | "serde_yaml", | ||
| 1604 | "serial_test", | 1605 | "serial_test", |
| 1605 | "test_utils", | 1606 | "test_utils", |
| 1606 | "tokio", | 1607 | "tokio", |
| @@ -2555,6 +2556,19 @@ dependencies = [ | |||
| 2555 | ] | 2556 | ] |
| 2556 | 2557 | ||
| 2557 | [[package]] | 2558 | [[package]] |
| 2559 | name = "serde_yaml" | ||
| 2560 | version = "0.9.27" | ||
| 2561 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2562 | checksum = "3cc7a1570e38322cfe4154732e5110f887ea57e22b76f4bfd32b5bdd3368666c" | ||
| 2563 | dependencies = [ | ||
| 2564 | "indexmap 2.1.0", | ||
| 2565 | "itoa", | ||
| 2566 | "ryu", | ||
| 2567 | "serde", | ||
| 2568 | "unsafe-libyaml", | ||
| 2569 | ] | ||
| 2570 | |||
| 2571 | [[package]] | ||
| 2558 | name = "serial_test" | 2572 | name = "serial_test" |
| 2559 | version = "2.0.0" | 2573 | version = "2.0.0" |
| 2560 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2574 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -3028,6 +3042,12 @@ dependencies = [ | |||
| 3028 | ] | 3042 | ] |
| 3029 | 3043 | ||
| 3030 | [[package]] | 3044 | [[package]] |
| 3045 | name = "unsafe-libyaml" | ||
| 3046 | version = "0.2.9" | ||
| 3047 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3048 | checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa" | ||
| 3049 | |||
| 3050 | [[package]] | ||
| 3031 | name = "untrusted" | 3051 | name = "untrusted" |
| 3032 | version = "0.9.0" | 3052 | version = "0.9.0" |
| 3033 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3053 | source = "registry+https://github.com/rust-lang/crates.io-index" |