Skip to content

Commit

Permalink
moves Windows implementation to serial-windows crate
Browse files Browse the repository at this point in the history
  • Loading branch information
dcuddeback committed Jul 2, 2017
1 parent c2cfb4f commit cc82d8b
Show file tree
Hide file tree
Showing 8 changed files with 164 additions and 146 deletions.
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ readme = "README.md"
keywords = ["serial", "hardware", "system", "RS232"]

[dependencies]
libc = "0.2"
serial-core = { path = "./serial-core" }

[target.'cfg(unix)'.dependencies]
serial-unix = { path = "./serial-unix" }

[target.'cfg(windows)'.dependencies]
serial-windows = { path = "./serial-windows" }
8 changes: 8 additions & 0 deletions serial-windows/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[package]
name = "serial-windows"
version = "0.4.0"
authors = ["David Cuddeback <[email protected]>"]

[dependencies]
serial-core = { path = "../serial-core" }
libc = "0.2"
Loading

0 comments on commit cc82d8b

Please sign in to comment.