Update all dependencies - autoclosed #17
3
.dockerignore
Normal file
3
.dockerignore
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
.cuddle/
|
||||||
|
.git/
|
||||||
|
target/
|
@ -1,4 +1,5 @@
|
|||||||
kind: template
|
kind: template
|
||||||
load: bust_docker_template.yaml
|
load: bust_rustbin_default_template.yaml
|
||||||
name: como
|
name: como
|
||||||
data: {}
|
data:
|
||||||
|
bin_name: como
|
||||||
|
40
Cargo.toml
40
Cargo.toml
@ -7,3 +7,43 @@ members = [
|
|||||||
"como_gql",
|
"como_gql",
|
||||||
"como_api",
|
"como_api",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[package]
|
||||||
|
name = "como_bin"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
como_gql = { path = "como_gql" }
|
||||||
|
como_core = { path = "como_core" }
|
||||||
|
como_domain = { path = "como_domain" }
|
||||||
|
como_infrastructure = { path = "como_infrastructure" }
|
||||||
|
como_api = { path = "como_api" }
|
||||||
|
|
||||||
|
async-graphql = "4.0.6"
|
||||||
|
async-graphql-axum = "*"
|
||||||
|
axum = "0.5.13"
|
||||||
|
axum-extra = { version = "*", features = ["cookie", "cookie-private"] }
|
||||||
|
axum-sessions = { version = "*" }
|
||||||
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
|
serde_json = "1.0.68"
|
||||||
|
tokio = { version = "1.20.1", features = ["full"] }
|
||||||
|
uuid = { version = "1.1.2", features = ["v4", "fast-rng"] }
|
||||||
|
sqlx = { version = "0.6", features = [
|
||||||
|
"runtime-tokio-rustls",
|
||||||
|
"postgres",
|
||||||
|
"migrate",
|
||||||
|
"uuid",
|
||||||
|
"offline",
|
||||||
|
] }
|
||||||
|
anyhow = "1.0.60"
|
||||||
|
dotenv = "0.15.0"
|
||||||
|
tracing = "0.1.36"
|
||||||
|
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
|
||||||
|
tower-http = { version = "0.3.4", features = ["full"] }
|
||||||
|
argon2 = "0.4"
|
||||||
|
rand_core = { version = "0.6", features = ["std"] }
|
||||||
|
cookie = { version = "0.16", features = ["secure", "percent-encode"] }
|
||||||
|
clap = { version = "3", features = ["derive", "env"] }
|
||||||
|
0
Dockerfile
Normal file
0
Dockerfile
Normal file
@ -1,39 +0,0 @@
|
|||||||
[package]
|
|
||||||
name = "como_bin"
|
|
||||||
version = "0.1.0"
|
|
||||||
edition = "2021"
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
como_gql = { path = "../como_gql" }
|
|
||||||
como_core = { path = "../como_core" }
|
|
||||||
como_domain = { path = "../como_domain" }
|
|
||||||
como_infrastructure = { path = "../como_infrastructure" }
|
|
||||||
como_api = { path = "../como_api" }
|
|
||||||
|
|
||||||
async-graphql = "4.0.6"
|
|
||||||
async-graphql-axum = "*"
|
|
||||||
axum = "0.5.13"
|
|
||||||
axum-extra = { version = "*", features = ["cookie", "cookie-private"] }
|
|
||||||
axum-sessions = { version = "*" }
|
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
|
||||||
serde_json = "1.0.68"
|
|
||||||
tokio = { version = "1.20.1", features = ["full"] }
|
|
||||||
uuid = { version = "1.1.2", features = ["v4", "fast-rng"] }
|
|
||||||
sqlx = { version = "0.6", features = [
|
|
||||||
"runtime-tokio-rustls",
|
|
||||||
"postgres",
|
|
||||||
"migrate",
|
|
||||||
"uuid",
|
|
||||||
"offline",
|
|
||||||
] }
|
|
||||||
anyhow = "1.0.60"
|
|
||||||
dotenv = "0.15.0"
|
|
||||||
tracing = "0.1.36"
|
|
||||||
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
|
|
||||||
tower-http = { version = "0.3.4", features = ["full"] }
|
|
||||||
argon2 = "0.4"
|
|
||||||
rand_core = { version = "0.6", features = ["std"] }
|
|
||||||
cookie = { version = "0.16", features = ["secure", "percent-encode"] }
|
|
||||||
clap = { version = "3", features = ["derive", "env"] }
|
|
Loading…
Reference in New Issue
Block a user