* Async worker pool draft * ignore all targets * simple worker example * add debug logs * fix * fix tests * remove log * remove debug logs * fix clippy
16 lines
430 B
TOML
16 lines
430 B
TOML
[package]
|
|
name = "simple_async_worker"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
fang = { path = "../../" , features = ["asynk"]}
|
|
env_logger = "0.9.0"
|
|
log = "0.4.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde_json = "1"
|
|
async-trait = "0.1"
|
|
tokio-postgres = "0.7"
|