-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (22 loc) · 892 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "embedded-recruitment-task"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[dependencies]
log = "0.4.2"
prost = "0.13.4"
prost-types = "0.13.4"
tokio = { version = "1", features = ["full"] } # Added `tokio` for asynchronous runtime and concurrency support.
env_logger = "0.10" # Added `env_logger` to enable structured logging with configurable log levels.
futures = "0.3" # Added `futures` for async utilities to manage concurrency and asynchronous tasks.
[build-dependencies]
prost-build = "0.13.4"
[dev-dependencies]
pretty_assertions = "1.4.1"
[lib]
name = "embedded_recruitment_task"
path = "src/lib.rs" # Defined the library path explicitly to ensure the project structure is clear.
[[bin]]
name = "embedded-recruitment-task"
path = "src/main.rs" # Explicitly specified the binary target to point to the `main.rs` file for running the application.