diff options
| author | Max Audron <audron@cocaine.farm> | 2022-06-07 12:28:18 +0200 |
|---|---|---|
| committer | Maximilian Manz <maximilian.manz@de.clara.net> | 2022-06-20 11:33:04 +0200 |
| commit | ae13cbecdbeca984e0d389732356c2785eab66d9 (patch) | |
| tree | ccd76a92e16d47d23530b87ecdf21b57e40917ef /Cargo.toml | |
| parent | fix crash while walking non existing dir (diff) | |
implement cloning of new repos
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -tokio = { version = "1", features = ["full", "rt-multi-thread"] } +tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] } futures = "0.3" gitlab = "0.1408" @@ -18,12 +18,13 @@ async-trait = "*" # Arg parsing and config clap = { version = "3", features = ["derive"] } -figment = { version = "0.10", features = ["toml", "yaml", "env"] } +figment = { version = "0.10", features = ["toml", "env"] } serde = "1" # logging tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } +tracing-flame = "0.2" # error handling anyhow = "1" |
