diff options
| author | Santo Cariotti <santo@dcariotti.me> | 2022-09-01 16:45:04 +0000 |
|---|---|---|
| committer | Santo Cariotti <santo@dcariotti.me> | 2022-09-01 16:45:04 +0000 |
| commit | ab23761e090b8ab6311a360eada7131f6663a3bf (patch) | |
| tree | b5a99bb4cfc811e45fc2e3680b4f8b1e944515eb /Cargo.toml | |
Fork from m6-ie project
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..f5cf075 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "m6-ie-2022" +version = "0.1.0" +edition = "2021" +authors = ["Santo Cariotti <santo@dcariotti.me>"] + +[dependencies] +async-trait = "0.1" +axum = { version = "0.5.15", features = ["headers"] } +http-body = "0.4.3" +jsonwebtoken = "8.1" +once_cell = "1.13" +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +tokio = { version = "1.20", features = ["full"] } +tracing = "0.1" +tracing-subscriber = { version = "0.3", features = ["env-filter"] } +tower-http = { version = "0.3.4", features = ["trace", "compression-br", "propagate-header", "sensitive-headers"] } +sqlx = { version = "0.6", features = [ "runtime-tokio-rustls", "postgres" ] } +sha256 = "1.0.3" +validator = { version = "0.16.0", features = ["derive"] } +chrono = "0.4" |
