nom-nom-nix-gc/Cargo.toml
Félix Baylac Jacqué ebd390987f
Some checks failed
Build nomnom / Build-NomNom (push) Failing after 5m19s
Add create binary cache path
It's not 100% complete yet, we're still displaying dummy data on the
homepage.

The auth path seems to be super verbose. But I'm a bit unwilling to
use a middleware to perform it: from my experience it makes easy to
screw up the auth model :/

I might revisit this choice later on.
2023-12-13 17:40:31 +01:00

36 lines
983 B
TOML

[package]
name = "nom-nom-gc"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4"
clap = { version = "4.0.29", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
url = "*"
webauthn-rs = "0.4.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
handlebars = "4.3.6"
deadpool-postgres = "0.11.0"
tokio-postgres = { version = "0.7.10", features = ["with-uuid-1", "with-serde_json-1", "with-chrono-0_4"] }
postgres-types = { version = "*", features = ["derive"] }
anyhow = "1.0.75"
refinery = { version = "0.8.11", features = ["tokio-postgres"] }
uuid = { version = "1.4.1", features = ["v4"] }
chrono = { version = "*", features = ["serde"] }
aws-sdk-s3 = "1.6.0"
[dependencies.heck]
version = "0.4.1"
[[bin]]
name = "nom-nom-gc-server"
path = "src/server/bin/main.rs"
[[bin]]
name = "nom-nom-gc-cli"
path = "src/cli/bin/main.rs"