-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
31 lines (26 loc) · 1020 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
[package]
name = "serial-rs"
version = "0.2.1"
edition = "2021"
authors = ["Ashcon Mohseninia <[email protected]>"]
description = "A cross-platform rust serial RS232 library with overlap IO support"
readme = "README.md"
repository = "https://github.com/rnd-ash/serial-rs"
keywords = ["serial", "modem", "serialport", "rs232"]
license = "GPL-2.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[badges]
maintenance = { status = "actively-developed" }
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu", "i686-pc-windows-msvc", "x86_64-apple-darwin"]
[dependencies]
glob="0.3.0"
regex="1.5.4"
cfg-if = "1.0.0"
[target."cfg(unix)".dependencies]
nix = "0.23.1"
[target."cfg(windows)".dependencies.winapi]
version = "0.3.9"
features = ["cguid", "commapi", "errhandlingapi", "fileapi", "guiddef", "handleapi", "minwinbase",
"minwindef", "ntdef", "setupapi", "winbase", "winerror", "winnt", "synchapi", "ioapiset"]