forked from jamwaffles/linuxcnc-hal-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (34 loc) · 975 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
[package]
name = "linuxcnc-hal-sys"
version = "0.2.0"
authors = ["James Waples <[email protected]>"]
edition = "2018"
documentation = "https://docs.rs/linuxcnc-hal-sys"
description = "Generated, unsafe Rust bindings to the LinuxCNC HAL submodule"
readme = "./README.md"
license = "MIT OR Apache-2.0"
keywords = [ "cnc", "linuxcnc", "bindgen", "ffi" ]
categories = [ "external-ffi-bindings", "science::robotics" ]
repository = "https://github.com/jamwaffles/linuxcnc-hal-rs"
include = [
"**/*.rs",
"patch/**/*",
"Cargo.toml",
"wrapper.h",
"linuxcnc-src/src",
"README.md",
]
# Realtime components must be compiled as cdylibs
[[example]]
name = "rtapi"
crate-type = [ "cdylib" ]
[badges]
circle-ci = { repository = "jamwaffles/linuxcnc-hal-rs", branch = "master" }
[dependencies]
log = "0.4.14"
[build-dependencies]
bindgen = "0.57.0"
cc = "1.0.66"
[dev-dependencies]
signal-hook = "0.3.4"
rtapi-logger = { path = "../rtapi-logger", version = "0.1.0" }