Skip to content

Commit

Permalink
async build step
Browse files Browse the repository at this point in the history
  • Loading branch information
ngalaiko committed Feb 14, 2024
1 parent 29d84f5 commit ad26681
Show file tree
Hide file tree
Showing 19 changed files with 830 additions and 586 deletions.
126 changes: 54 additions & 72 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[workspace]
members = [
"convert",
"serve",
"shared",
"update",
"serve",
]
resolver = "2"

Expand Down
23 changes: 23 additions & 0 deletions convert/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[package]
name = "convert"
version = "0.1.0"
edition = "2021"

[lib]
name = "convert"
path = "src/lib.rs"

[[bin]]
name = "convert"
path = "src/main.rs"

[lints]
workspace = true

[dependencies]
shared = { path = "../shared" }
clap = { version = "4.4.11", features = ["derive"] }
futures = "0.3.30"
tokio = { version = "1.36.0", features = ["macros", "rt", "rt-multi-thread", "fs", "sync"] }
image = "0.24.8"
rayon = "1.8.1"
Loading

0 comments on commit ad26681

Please sign in to comment.