From f869c7f52d8fd1f1ef61e218bbec4d0dac27673d Mon Sep 17 00:00:00 2001 From: Max Audron Date: Tue, 7 Jun 2022 12:28:18 +0200 Subject: init --- Cargo.toml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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" -- cgit v1.2.3