Implement a WebSocket server for debugging.

This commit is contained in:
Eddy Bruel 2016-09-06 12:23:00 +02:00
parent 77651959e2
commit 8856671f2e
7 changed files with 100 additions and 0 deletions

View file

@ -0,0 +1,15 @@
[package]
name = "debugger"
version = "0.0.1"
authors = ["The Servo Project Developers"]
license = "MPL-2.0"
publish = false
[lib]
name = "debugger"
path = "lib.rs"
crate_type = ["rlib"]
[dependencies]
util = { path = "../util" }
websocket = "0.17.1"