-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
43 lines (37 loc) · 1 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
[package]
name = "serial_enumerator"
version = "0.2.12"
edition = "2018"
license = "MIT"
authors = ["Xiaoqing Ma <[email protected]>"]
description = "A serial port enumreator library writen in rust"
homepage = "https://github.com/rede97/serial_enumerator"
repository = "https://github.com/rede97/serial_enumerator"
include = ["Cargo.toml", "src/**/*.rs", "README.md"]
keywords = ["serial", "tty", "UART"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "serial_enumerator"
path = "src/lib.rs"
[dependencies]
nom = "7.1.0"
[target.'cfg(target_os = "macos")'.dependencies]
IOKit-sys = "0.1.5"
libc = "0.2"
mach = "0.1.1"
CoreFoundation-sys = "0.1.4"
defer-lite = "1.0.0"
[target.'cfg(windows)'.dependencies.windows]
version = "0.29.0"
features = [
"std",
"alloc",
"Win32_Foundation",
"Win32_Devices_DeviceAndDriverInstallation",
"Win32_System_Registry",
]
[[bin]]
name = "lser"
path = "src/bin/lser.rs"
test = false