-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (33 loc) · 972 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
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "rs_openshowvar"
version = "1.0.0"
authors = ["Selim Serbes <[email protected]>"]
edition = "2021"
description = "A Rust library for connecting to Kuka robots and performing data read/write operations using the OpenShowVar protocol."
license = "MIT"
repository = "https://github.com/selimserbes/rs-openshowvar"
documentation = "https://docs.rs/rs_openshowvar"
readme = "README.md"
keywords = ["kuka", "robotics", "automation", "network", "tcp"]
categories = ["network-programming"]
[[example]]
name = "example"
path = "examples/example.rs"
[[test]]
name = "e2e"
path = "tests/e2e/test.rs"
[[test]]
name = "integration_connect"
path = "tests/integration/connect.rs"
[[test]]
name = "integration_read"
path = "tests/integration/read.rs"
[[test]]
name = "integration_write"
path = "tests/integration/write.rs"
[[test]]
name = "integration_disconnect"
path = "tests/integration/disconnect.rs"
[[test]]
name = "unit"
path = "tests/unit/test.rs"