add worker

This commit is contained in:
2025-10-03 21:18:42 +09:00
parent 7ca33c3e26
commit da7a24bb42
4 changed files with 256 additions and 17 deletions

15
ubw-worker/Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "ubw-worker"
version = "0.1.0"
edition = "2024"
[dependencies]
tokio = { workspace = true }
tower = { workspace = true }
reqwest = {workspace = true}
url = {workspace = true}
rand = {workspace = true}
thiserror = {workspace = true}
compact_str = {workspace = true}
bytes = {workspace = true}
clap = {version = "4.5", features = ["derive"]}

3
ubw-worker/src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}