d585bde870
* split into async and blocking features * update Cargo.toml file * fix example
13 lines
347 B
TOML
13 lines
347 B
TOML
[package]
|
|
name = "simple_worker"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
fang = { path = "../../" , features = ["blocking"]}
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
signal-hook = "0.3.10"
|
|
dotenv = "0.15.0"
|
|
env_logger = "0.9.0"
|