-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
85 lines (70 loc) · 1.64 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[package]
name = "rust-idioms"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
criterion = "0.3.5"
regex = "1.5"
clap = "2.33.3"
piston_window = "0.120.0"
piston2d-graphics = "0.40.0"
rand = "0.8.4"
bincode = "1.3.3"
serde = "1.0.130"
serde_cbor = "0.11.2"
serde_derive = "1.0.130"
serde_json = "1.0.68"
byteorder="1.4.3"
crc="2.0.0"
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1.12.0", features = ["full"] }
trust-dns = { version = "0.20.3", default-features = false }
crossbeam="0.8.1"
bytes = "1"
async-stream = "0.3.2"
# example multiple bin
# [[bin]]
# name = "akv_mem"
# path = "src/akv_mem.rs"
# [[bin]]
# name = "akv_disk"
# path = "src/akv_disk.rs"
[[example]]
name = "file_line"
path = "examples/file/file_line.rs"
[[example]]
name = "yum_tokio"
path = "examples/yum_tokio/mini_redis.rs"
[[example]]
name = "std_tcp"
path = "examples/std_tcp/app.rs"
[[example]]
name = "heap_mem"
path = "examples/heap_mem/app.rs"
[[example]]
name = "yum_db"
path = "examples/yum_db/app.rs"
[[example]]
name = "cdn_resolve"
path = "examples/cdn_resolve.rs"
[[bench]]
name = "simple_bench"
path = "./src/rust_lang/simple_bench.rs"
harness = false
[[bench]]
name = "inline_fn"
path = "./src/rust_lang/inline_fn.rs"
harness = false
[[bench]]
name = "concatenating_string"
path = "./src/rust_lang/concatenating_string.rs"
harness = false
[[bench]]
name = "command_bench"
path = "./src/design_pattern/behavioral/command_bench.rs"
harness = false
[[bench]]
name = "flow_control_bench"
path = "./src/rust_lang/flow_control_bench.rs"
harness = false