diff options
| author | KunoiSayami <[email protected]> | 2021-05-08 01:22:08 +0800 |
|---|---|---|
| committer | KunoiSayami <[email protected]> | 2021-05-08 01:22:08 +0800 |
| commit | 86e4c76dabb20b7f489abcb1f1c3cdb11a494b91 (patch) | |
| tree | 8369ddbd694637a61fc337c71e89d61e62bc8286 /Cargo.lock | |
| parent | 3a8881fbaab4d18b865a44198db9c195041cbff2 (diff) | |
fix: Fix authenticate-cookie not working properlyv0.1.2
* feat: Add adduser subcommand
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 35 |
1 files changed, 32 insertions, 3 deletions
@@ -344,7 +344,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "cgit-simple-authentication" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "base64", @@ -358,6 +358,7 @@ dependencies = [ "serde_derive", "serde_json", "sha2", + "simple-logging", "sqlx", "tokio 1.5.0", "toml", @@ -1177,7 +1178,7 @@ dependencies = [ "cfg-if 1.0.0", "instant", "libc", - "redox_syscall", + "redox_syscall 0.2.8", "smallvec", "winapi 0.3.9", ] @@ -1420,6 +1421,12 @@ dependencies = [ [[package]] name = "redox_syscall" +version = "0.1.57" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" + +[[package]] +name = "redox_syscall" version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "742739e41cd49414de871ea5e549afb7e2a3ac77b589bcbebe8c82fab37147fc" @@ -1571,6 +1578,17 @@ dependencies = [ ] [[package]] +name = "simple-logging" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b00d48e85675326bb182a2286ea7c1a0b264333ae10f27a937a72be08628b542" +dependencies = [ + "lazy_static", + "log", + "thread-id", +] + +[[package]] name = "slab" version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1738,7 +1756,7 @@ dependencies = [ "cfg-if 1.0.0", "libc", "rand 0.8.3", - "redox_syscall", + "redox_syscall 0.2.8", "remove_dir_all", "winapi 0.3.9", ] @@ -1782,6 +1800,17 @@ dependencies = [ ] [[package]] +name = "thread-id" +version = "3.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7fbf4c9d56b320106cd64fd024dadfa0be7cb4706725fc44a7d7ce952d820c1" +dependencies = [ + "libc", + "redox_syscall 0.1.57", + "winapi 0.3.9", +] + +[[package]] name = "tinyvec" version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" |
