Skip to content

Commit

Permalink
Merge pull request #116 from Dampfwalze/driver-ipc-api
Browse files Browse the repository at this point in the history
Refactor IPC API implementation
  • Loading branch information
MolotovCherry authored Jun 24, 2024
2 parents 9cf477c + 2eae9d8 commit ab9d5a2
Show file tree
Hide file tree
Showing 9 changed files with 1,692 additions and 499 deletions.
49 changes: 38 additions & 11 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 18 additions & 1 deletion rust/driver-ipc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,21 @@ windows = { version = "0.57.0", features = ["Win32_Foundation"] }
lazy_format = "2.0.3"
joinery = "3.1.0"
winreg = "0.52.0"
tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.38.0", features = [
"rt-multi-thread",
"sync",
"time",
"net",
"macros",
] }
tokio-stream = { version = "0.1.15", features = ["sync"] }

[dev-dependencies]
tokio = { version = "1.38.0", features = [
"rt-multi-thread",
"sync",
"time",
"net",
"macros",
"io-util",
] }
Loading

0 comments on commit ab9d5a2

Please sign in to comment.