diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2024-07-26 13:38:48 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2024-07-26 13:38:48 +0100 |
| commit | f609ed6e45bb870c2b855ff6e0d4b4d7f36e7bd0 (patch) | |
| tree | bb81c4b0d3dcb3afaacffee543462b67df68d5ff /Cargo.lock | |
| parent | 0134ab8eb413b8b81ec8e179897ddb8ea63e134e (diff) | |
fix(remote): authenticate pushes
in the future we could implement our own credentials callback function
to remove the dependancy
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 31 |
1 files changed, 31 insertions, 0 deletions
| @@ -373,6 +373,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 373 | checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" | 373 | checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" |
| 374 | 374 | ||
| 375 | [[package]] | 375 | [[package]] |
| 376 | name = "auth-git2" | ||
| 377 | version = "0.5.4" | ||
| 378 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 379 | checksum = "e51bd0e4592409df8631ca807716dc1e5caafae5d01ce0157c966c71c7e49c3c" | ||
| 380 | dependencies = [ | ||
| 381 | "dirs", | ||
| 382 | "git2", | ||
| 383 | "terminal-prompt", | ||
| 384 | ] | ||
| 385 | |||
| 386 | [[package]] | ||
| 376 | name = "autocfg" | 387 | name = "autocfg" |
| 377 | version = "1.2.0" | 388 | version = "1.2.0" |
| 378 | source = "registry+https://github.com/rust-lang/crates.io-index" | 389 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -814,6 +825,15 @@ dependencies = [ | |||
| 814 | ] | 825 | ] |
| 815 | 826 | ||
| 816 | [[package]] | 827 | [[package]] |
| 828 | name = "dirs" | ||
| 829 | version = "5.0.1" | ||
| 830 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 831 | checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" | ||
| 832 | dependencies = [ | ||
| 833 | "dirs-sys", | ||
| 834 | ] | ||
| 835 | |||
| 836 | [[package]] | ||
| 817 | name = "dirs-sys" | 837 | name = "dirs-sys" |
| 818 | version = "0.4.1" | 838 | version = "0.4.1" |
| 819 | source = "registry+https://github.com/rust-lang/crates.io-index" | 839 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1747,6 +1767,7 @@ dependencies = [ | |||
| 1747 | "anyhow", | 1767 | "anyhow", |
| 1748 | "assert_cmd", | 1768 | "assert_cmd", |
| 1749 | "async-trait", | 1769 | "async-trait", |
| 1770 | "auth-git2", | ||
| 1750 | "chacha20poly1305", | 1771 | "chacha20poly1305", |
| 1751 | "clap", | 1772 | "clap", |
| 1752 | "console", | 1773 | "console", |
| @@ -3041,6 +3062,16 @@ dependencies = [ | |||
| 3041 | ] | 3062 | ] |
| 3042 | 3063 | ||
| 3043 | [[package]] | 3064 | [[package]] |
| 3065 | name = "terminal-prompt" | ||
| 3066 | version = "0.2.3" | ||
| 3067 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3068 | checksum = "572818b3472910acbd5dff46a3413715c18e934b071ab2ba464a7b2c2af16376" | ||
| 3069 | dependencies = [ | ||
| 3070 | "libc", | ||
| 3071 | "winapi", | ||
| 3072 | ] | ||
| 3073 | |||
| 3074 | [[package]] | ||
| 3044 | name = "termtree" | 3075 | name = "termtree" |
| 3045 | version = "0.4.1" | 3076 | version = "0.4.1" |
| 3046 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3077 | source = "registry+https://github.com/rust-lang/crates.io-index" |