-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (61 loc) · 1.36 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "hello-rust"
version = "0.1.0"
authors = ["zing <599490911@qq.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
doc = false
name = "app"
path = "src/main.rs"
[[bin]]
doc = false
name = "test"
path = "src/test_main.rs"
[[bin]]
name = "bin-sync"
path = "src/lib/sync/main.rs"
[[bin]]
name = "bin-process"
path = "src/rust_std/process/main.rs"
[[example]]
name = "example"
[workspace]
members = [
"crates/rand",
"crates/tokio/quickstart",
"crates/winapi",
"crates/serde_json",
"crates/paho-mqtt-example",
"crates/rusqlite-crate",
"crates/ctrlc-crate",
"crates/windows-service-crate",
"crates/hello-world",
"crates/socket2/quick-start",
"crates/diesel/sqlite/getting_started_step_1",
"crates/my-mini-redis/tokio",
"crates/my-mini-redis/spawning",
"crates/my-mini-redis/shared-state"
]
exclude = [
"crates/libusb",
"crates/actix",
"crates/libusb-sys-demo",
"crates/paho-mqtt-example",
"crates/rusqlite-crate",
"crates/diesel/sqlite/getting_started_step_1",
]
[dependencies]
ferris-says = "0.1"
rand = "0.8.3"
chrono = "0.4"
dotenv = "0.9.0"
byteorder = "1.3.4"
actix-web = "2.0.0"
actix-rt = "1.1.1"
actix-http = "1.0.1"
serial = "0.4"
itertools = "0.10.0"
rust-crypto = "0.2.36"
serde = "1.0.125"
env_logger = "0.6"