-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 731 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 731 Bytes
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
29
30
31
[package]
name = "guessing_game"
authors = ["Brian Obot <brianobot9@gmail.com>"]
version = "0.1.0"
edition = "2024"
[dependencies]
async-std = { version = "1.13.2", features = ["unstable"] }
byteorder = "1.5.0"
chrono = "0.4.41"
crossbeam = "0.8.4"
features = "0.10.0"
futures-lite = "2.6.1"
image = "0.13.0"
num = "0.4.3"
rand = "0.8.5"
regex = "1.11.1"
reqwest = { version = "0.12.12", features = ["blocking"] }
serde_json = "1.0.149"
surf = "2.3.2"
tokio = { version = "1.43.0", features = ["full"] }
waker-fn = "1.2.0"
[[bin]]
name = "Result_type"
path = "src/error_handling_process/0_result_type.rs"
[[bin]]
name = "Result_type_part_2"
path = "src/error_handling_process/1_error_handling_with_try_catch_and_map_error.rs"