Skip to content

Commit

Permalink
working stl rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
fidoriel committed Oct 25, 2024
1 parent 91d5dff commit 620586e
Show file tree
Hide file tree
Showing 10 changed files with 551 additions and 65 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ PORT=3000
LOG_LEVEL=info

# frontend
BACKEND_URL="localhost:3000"
VITE_BACKEND_URL="localhost:3000"
91 changes: 89 additions & 2 deletions Cargo.lock

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

8 changes: 6 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,24 @@ path = "backend/main.rs"
anyhow = "1.0.91"
axum = "0.7.7"
chrono = { version = "0.4.38", features = ["serde"] }
diesel = { version = "2.2.0", features = ["sqlite", "returning_clauses_for_sqlite_3_35"] }
diesel-async = "0.5.0"
diesel = { version = "2.2.0", features = ["sqlite", "returning_clauses_for_sqlite_3_35", "chrono"] }
diesel-async = { version = "0.5.0", features = ["sqlite", "deadpool", "tokio", "bb8", "async-connection-wrapper"] }
diesel_migrations = "2.2.0"
dotenvy = "0.15.7"
envy = "0.4.2"
pathdiff = "0.2.2"
serde = "1.0.213"
serde_derive = "1.0.213"
serde_json = "1.0.132"
sha256 = "1.5.0"
stl-thumb = "0.5.0"
str_slug = "0.1.3"
tokio = { version = "1.41.0", features = ["full"] }
tower-http = { version = "0.6.1", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
typeshare = "1.0.3"
url = "2.5.2"
url_serde = "0.2.0"
uuid = "1.11.0"
walkdir = "2.5.0"
Loading

0 comments on commit 620586e

Please sign in to comment.