From cbc7b3810bfe8fa750e566e7db2166ef8b7fcad1 Mon Sep 17 00:00:00 2001 From: KunoiSayami <46131041+KunoiSayami@users.noreply.github.com> Date: Thu, 6 May 2021 00:03:27 +0800 Subject: init --- Cargo.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..a887ec4 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "cgit-simple-authentication" +version = "0.0.1" +authors = ["KunoiSayami <46131041+KunoiSayami@users.noreply.github.com>"] +edition = "2018" + +[dependencies] +log = { version = "0.4", features = ["max_level_trace", "release_max_level_debug"] } +env_logger = "0.8" +tokio = { version = "1", features = ["full"] } +serde_json = "1" +serde_derive = "1" +serde = { version = "1", features = ["derive"] } +anyhow = "1" +toml = "0.5" +syslog = "5.0.0" +sqlx = { version = "0.5", features = [ "json", "sqlite", "runtime-actix-native-tls"] } +rand = "0.7" +clap = "2.33" +handlebars = "3.4" +url = "2.1" +redis = { version = "0.17.0", features = ["tokio-comp"] } +sha2 = "0.9.3" \ No newline at end of file -- cgit v1.3.1