mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Bump serde to 1.0
This commit is contained in:
parent
e1bce24129
commit
76d8573393
60 changed files with 487 additions and 474 deletions
|
@ -12,11 +12,11 @@ path = "lib.rs"
|
|||
[dependencies]
|
||||
devtools_traits = {path = "../devtools_traits"}
|
||||
hyper = "0.10"
|
||||
hyper_serde = "0.6"
|
||||
ipc-channel = "0.7"
|
||||
hyper_serde = "0.7"
|
||||
ipc-channel = "0.8"
|
||||
log = "0.3.5"
|
||||
msg = {path = "../msg"}
|
||||
serde = "0.9"
|
||||
serde_derive = "0.9"
|
||||
serde_json = "0.9"
|
||||
serde = "1.0"
|
||||
serde_derive = "1.0"
|
||||
serde_json = "1.0"
|
||||
time = "0.1"
|
||||
|
|
|
@ -514,8 +514,8 @@ fn run_server(sender: Sender<DevtoolsControlMsg>,
|
|||
message: css_error.msg,
|
||||
logLevel: LogLevel::Warn,
|
||||
filename: css_error.filename,
|
||||
lineNumber: css_error.line,
|
||||
columnNumber: css_error.column,
|
||||
lineNumber: css_error.line as usize,
|
||||
columnNumber: css_error.column as usize,
|
||||
};
|
||||
handle_console_message(actors.clone(), id, None, console_message,
|
||||
&actor_pipelines, &actor_workers)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue