aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2022-06-07 12:28:18 +0200
committerMaximilian Manz <maximilian.manz@de.clara.net>2022-06-20 11:33:04 +0200
commitf869c7f52d8fd1f1ef61e218bbec4d0dac27673d (patch)
tree8029b33976fc897a4ae81785e622a7e61ad2eb67 /Cargo.toml
init
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml38
1 files changed, 38 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..0a1f55c
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,38 @@
+[package]
+name = "gtree"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+tokio = { version = "1", features = ["full", "rt-multi-thread"] }
+futures = "0.3"
+
+gitlab = "0.1403"
+graphql_client = "0.8"
+
+git2 = { version = "0.13", features = ["vendored-libgit2", "vendored-openssl"] }
+
+walkdir = "2"
+
+async-trait = "*"
+
+# Arg parsing and config
+structopt = "0.3"
+figment = { version = "0.10", features = ["toml", "yaml", "env"] }
+serde = "1"
+
+# logging
+tracing = "0.1"
+tracing-subscriber = { version = "0.3", features = ["env-filter"] }
+
+# error handling
+anyhow = "1"
+thiserror = "1"
+
+derivative = "2"
+
+url = { version = "2", features = ["serde"] }
+xdg = "2"
+
+# terminal coloring
+ansi_term = "0.12"