mirror of
https://github.com/servo/servo.git
synced 2025-08-28 08:38:20 +01:00
Implement a WebSocket server for debugging.
This commit is contained in:
parent
77651959e2
commit
8856671f2e
7 changed files with 100 additions and 0 deletions
15
components/debugger/Cargo.toml
Normal file
15
components/debugger/Cargo.toml
Normal 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"
|
Loading…
Add table
Add a link
Reference in a new issue