-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
30 lines (26 loc) · 846 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
[package]
name = "linuxcnc-hal"
version = "0.3.0"
authors = ["James Waples <james@wapl.es>"]
edition = "2021"
documentation = "https://docs.rs/linuxcnc-hal"
description = "A safe, high level interface to LinuxCNC's HAL submodule"
readme = "./README.md"
license = "MIT OR Apache-2.0"
keywords = [ "cnc", "linuxcnc" ]
categories = [ "api-bindings" ]
repository = "https://github.com/jamwaffles/linuxcnc-hal-rs"
[badges]
circle-ci = { repository = "jamwaffles/linuxcnc-hal-rs", branch = "master" }
# Realtime components must be compiled as cdylibs
[[example]]
name = "rtapi"
crate-type = [ "cdylib" ]
[dependencies]
libc = "0.2.137"
linuxcnc-hal-sys = { path = "../linuxcnc-hal-sys", version = "0.3.0" }
log = "0.4.17"
signal-hook = "0.3.14"
thiserror = "1.0.37"
[dev-dependencies]
rtapi-logger = { path = "../rtapi-logger", version = "0.2.0" }