diff options
| author | KunoiSayami <[email protected]> | 2021-05-06 00:03:27 +0800 |
|---|---|---|
| committer | KunoiSayami <[email protected]> | 2021-05-06 00:03:27 +0800 |
| commit | cbc7b3810bfe8fa750e566e7db2166ef8b7fcad1 (patch) | |
| tree | 91be52074dfb0652cbfefa05f5e9ca07001ce4a8 /Cargo.toml | |
init
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 23 |
1 files changed, 23 insertions, 0 deletions
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 <[email protected]>"] +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 |
