Skip to content

Commit

Permalink
feat(web): add chrono dependency to manage time and update async-grap…
Browse files Browse the repository at this point in the history
…hql features configuration
  • Loading branch information
Michael-Liendo committed Sep 24, 2024
1 parent 11f3761 commit a68bea5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 11 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,25 @@ members = [
"crates/server",
"crates/test",
"crates/types",
"crates/web"
"crates/web",
]
default-members = ["crates/cli"]
resolver = "2"

[workspace.dependencies]
anyhow = "1.0.86"
http-auth-basic = "0.3.3"
async-graphql = { version = "7.0.5", features = ["chrono", "decimal", "tracing"] }
async-graphql = { version = "7.0.5", features = [
"chrono",
"decimal",
"tracing",
] }
async-graphql-axum = "7.0.5"
async-trait = "0.1.80"
axum = "0.7.5"
axum-extra = "0.9.3"
base64 = "0.22.1"
chrono = { version = "0.4.38", default-features = false }
chrono = { version = "0.4.38", default-features = false, features = ["clock"] }
cookie = "0.18.1"
dotenv = "0.15.0"
fake = "2.9.2"
Expand All @@ -38,7 +42,10 @@ rand = "0.8.5"
regex = "1.9.3"
reqwest = "0.11"
rust-argon2 = "2.1.0"
rust-s3 = { version = "0.34.0", features = ["tokio-rustls-tls", "fail-on-err"], default-features = false }
rust-s3 = { version = "0.34.0", features = [
"tokio-rustls-tls",
"fail-on-err",
], default-features = false }
sea-orm = "0.12"
sea-orm-cli = { version = "0.12", default-features = false }
sea-orm-migration = "0.12"
Expand Down
3 changes: 2 additions & 1 deletion crates/web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ name = "townhall-web"
path = "src/bin/main.rs"

[dependencies]
chrono = { workspace = true }
anyhow = { workspace = true }
leptos = { workspace = true, features = ["csr"] }
leptos = { workspace = true, features = ["csr"] }
leptos_meta = { workspace = true, features = ["csr"] }
leptos_router = { workspace = true, features = ["csr"] }
leptos-use = { workspace = true }
Expand Down

0 comments on commit a68bea5

Please sign in to comment.