-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (43 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
57 lines (43 loc) · 1.15 KB
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
[package]
name = "netipc"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/lib.rs"
[dependencies]
libc = "0.2"
[dev-dependencies]
proptest = "1"
[[bin]]
name = "interop_codec"
path = "src/bin/interop_codec.rs"
[[bin]]
name = "interop_uds"
path = "../../../tests/fixtures/rust/src/bin/interop_uds.rs"
[[bin]]
name = "interop_shm"
path = "../../../tests/fixtures/rust/src/bin/interop_shm.rs"
[[bin]]
name = "interop_service"
path = "../../../tests/fixtures/rust/src/bin/interop_service.rs"
[[bin]]
name = "interop_cache"
path = "../../../tests/fixtures/rust/src/bin/interop_cache.rs"
[[bin]]
name = "interop_named_pipe"
path = "../../../tests/fixtures/rust/src/bin/interop_named_pipe.rs"
[[bin]]
name = "interop_win_shm"
path = "../../../tests/fixtures/rust/src/bin/interop_win_shm.rs"
[[bin]]
name = "interop_service_win"
path = "../../../tests/fixtures/rust/src/bin/interop_service_win.rs"
[[bin]]
name = "interop_cache_win"
path = "../../../tests/fixtures/rust/src/bin/interop_cache_win.rs"
[[bin]]
name = "bench_posix"
path = "../../../bench/drivers/rust/src/main.rs"
[[bin]]
name = "bench_windows"
path = "../../../bench/drivers/rust/src/bench_windows.rs"