Skip to content

Instantly share code, notes, and snippets.

@benwis
Created August 20, 2021 05:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benwis/4757fedb4b505f638d9a4e9673681f45 to your computer and use it in GitHub Desktop.
Save benwis/4757fedb4b505f638d9a4e9673681f45 to your computer and use it in GitHub Desktop.
Flyctl Deploy Failure Cargo.toml main
[package]
name = "vidette"
version = "0.1.0"
edition = "2018"
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "vidette"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
email = {path="../email"}
async-graphql = { git = "https://github.com/async-graphql/async-graphql/", branch="actix-web-v4-beta", features = ["uuid", "chrono", "dataloader"] }
slab = "0.4.2"
uuid = { version = "0.8", features = ["serde", "v4"] }
chrono = {version= "0.4", features=["serde"]}
serde_derive = "1.0"
bigdecimal = {version="0.2", features=["serde"]}
async-trait = "0.1.50"
strum = "0.21.0"
strum_macros = "0.21.1"
anyhow = "1.0"
argon2 = "0.2"
rand_core = { version = "0.6", features = ["std"] }
thiserror = "1.0"
jsonwebtoken = { git = "https://github.com/Keats/jsonwebtoken", branch = "next" }
regex = "1.5"
futures = "0.3"
actix-web = { version = "4.0.0-beta.8" }
dotenv = "0.15.0"
dotenv_codegen = "0.15.0"
time = { version = "0.2", features = ["serde"] }
http = "0.2"
futures-util = "0.3.15"
actix-web-httpauth = "0.6.0-beta.2"
async-graphql-actix-web = { git = "https://github.com/async-graphql/async-graphql/", branch="actix-web-v4-beta" }
config = { version = "0.10.1", features = ["yaml"] }
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
sqlx = { git = "https://github.com/launchbadge/sqlx.git", features = [ "runtime-actix-native-tls", "macros","bigdecimal", "postgres", "uuid", "json", "chrono", "migrate", "offline"] }
serde-aux = "2.2.0"
actix-rt = "2"
[dev-dependencies]
jsonpath_lib = "0.3.0"
wiremock = {version="0.5"}
uuid = { version = "0.8", features = ["serde", "v4"] }
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
tokio = { version = "1", features = ["full"] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment