summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorCyborus <cyborus@cyborus.xyz>2023-11-29 21:18:55 +0100
committerCyborus <cyborus@cyborus.xyz>2023-11-30 01:09:15 +0100
commitcea10e2fcafbbae4d16f081524862240d41cc949 (patch)
tree20503f326b3b58637e69a03c8c946b9be791e5c4 /Cargo.lock
parentadd ci pipeline (diff)
downloadforgejo-api-cea10e2fcafbbae4d16f081524862240d41cc949.tar.xz
forgejo-api-cea10e2fcafbbae4d16f081524862240d41cc949.zip
add testing boilerplate
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock29
1 files changed, 29 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2c23273..0f001b0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -129,6 +129,16 @@ dependencies = [
]
[[package]]
+name = "eyre"
+version = "0.6.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "80f656be11ddf91bd709454d15d5bd896fbaf4cc3314e69349e4d1569f5b46cd"
+dependencies = [
+ "indenter",
+ "once_cell",
+]
+
+[[package]]
name = "fastrand"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -159,6 +169,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
name = "forgejo-api"
version = "0.1.0"
dependencies = [
+ "eyre",
"reqwest",
"serde",
"soft_assert",
@@ -329,6 +340,12 @@ dependencies = [
]
[[package]]
+name = "indenter"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
+
+[[package]]
name = "indexmap"
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -843,10 +860,22 @@ dependencies = [
"mio",
"pin-project-lite",
"socket2 0.5.5",
+ "tokio-macros",
"windows-sys",
]
[[package]]
+name = "tokio-macros"
+version = "2.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
+[[package]]
name = "tokio-native-tls"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"