Fix revision
parent: tbd commit: 4c5e1fd
Showing 2 changed files with 40 insertions and 3 deletions
Cargo.lock
@@ -442,6 +442,18 @@ dependencies = [ | ||
442 | 442 | ] |
443 | 443 | |
444 | 444 | [[package]] |
445 | name = "deadpool" | |
446 | version = "0.10.0" | |
447 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
448 | checksum = "fb84100978c1c7b37f09ed3ce3e5f843af02c2a2c431bae5b19230dad2c1b490" | |
449 | dependencies = [ | |
450 | "async-trait", | |
451 | "deadpool-runtime", | |
452 | "num_cpus", | |
453 | "tokio", | |
454 | ] | |
455 | ||
456 | [[package]] | |
445 | 457 | name = "deadpool-runtime" |
446 | 458 | version = "0.1.2" |
447 | 459 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -750,7 +762,7 @@ dependencies = [ | ||
750 | 762 | "bincode", |
751 | 763 | "chrono", |
752 | 764 | "color-eyre", |
753 | "deadpool", | |
765 | "deadpool 0.10.0", | |
754 | 766 | "futures-util", |
755 | 767 | "giterated-models", |
756 | 768 | "jsonwebtoken", |
@@ -777,7 +789,7 @@ dependencies = [ | ||
777 | 789 | "base64 0.21.3", |
778 | 790 | "bincode", |
779 | 791 | "chrono", |
780 | "deadpool", | |
792 | "deadpool 0.9.5", | |
781 | 793 | "futures-util", |
782 | 794 | "git2", |
783 | 795 | "giterated-api", |
@@ -995,6 +1007,20 @@ dependencies = [ | ||
995 | 1007 | ] |
996 | 1008 | |
997 | 1009 | [[package]] |
1010 | name = "hyper-rustls" | |
1011 | version = "0.24.1" | |
1012 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
1013 | checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" | |
1014 | dependencies = [ | |
1015 | "futures-util", | |
1016 | "http", | |
1017 | "hyper", | |
1018 | "rustls", | |
1019 | "tokio", | |
1020 | "tokio-rustls", | |
1021 | ] | |
1022 | ||
1023 | [[package]] | |
998 | 1024 | name = "hyper-tls" |
999 | 1025 | version = "0.5.0" |
1000 | 1026 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1674,6 +1700,7 @@ dependencies = [ | ||
1674 | 1700 | "http", |
1675 | 1701 | "http-body", |
1676 | 1702 | "hyper", |
1703 | "hyper-rustls", | |
1677 | 1704 | "hyper-tls", |
1678 | 1705 | "ipnet", |
1679 | 1706 | "js-sys", |
@@ -1683,16 +1710,20 @@ dependencies = [ | ||
1683 | 1710 | "once_cell", |
1684 | 1711 | "percent-encoding", |
1685 | 1712 | "pin-project-lite", |
1713 | "rustls", | |
1714 | "rustls-pemfile", | |
1686 | 1715 | "serde", |
1687 | 1716 | "serde_json", |
1688 | 1717 | "serde_urlencoded", |
1689 | 1718 | "tokio", |
1690 | 1719 | "tokio-native-tls", |
1720 | "tokio-rustls", | |
1691 | 1721 | "tower-service", |
1692 | 1722 | "url", |
1693 | 1723 | "wasm-bindgen", |
1694 | 1724 | "wasm-bindgen-futures", |
1695 | 1725 | "web-sys", |
1726 | "webpki-roots", | |
1696 | 1727 | "winreg", |
1697 | 1728 | ] |
1698 | 1729 | |
@@ -2846,6 +2877,12 @@ dependencies = [ | ||
2846 | 2877 | ] |
2847 | 2878 | |
2848 | 2879 | [[package]] |
2880 | name = "webpki-roots" | |
2881 | version = "0.25.2" | |
2882 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
2883 | checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" | |
2884 | ||
2885 | [[package]] | |
2849 | 2886 | name = "whoami" |
2850 | 2887 | version = "1.4.1" |
2851 | 2888 | source = "registry+https://github.com/rust-lang/crates.io-index" |
ROADMAP.md
@@ -61,4 +61,4 @@ Giterated will be considered to have met the target of MVP when the following co | ||
61 | 61 | - Authorization |
62 | 62 | |
63 | 63 | ## Revisions |
64 | 26th Tuesday September 2023 - [View Revision](https://giterated.dev/ambee/giterated/blob/98bdb5602a6cf554670b7fcb743effdc3951f0aa/README.md) | |
64 | \ No newline at end of file | |
64 | 26th Tuesday September 2023 - [View Revision](https://giterated.dev/ambee/giterated/blob/4322bd3b53faccbfe277b8ae88c3835994e1a3f0/README.md) | |
64 | \ No newline at end of file |