Update to zero-copy* HTML parsing

html5ever now uses the Tendril string type to minimize copying internally,
but Servo still converts from/to `String` at the boundary
(which involves copying).
This commit is contained in:
Simon Sapin 2015-06-25 20:40:38 -07:00
parent ea06bebca9
commit 34bfa16517
7 changed files with 81 additions and 16 deletions

View file

@ -76,7 +76,8 @@ num = "0.1.24"
websocket = "0.12"
uuid = "0.1.16"
smallvec = "0.1"
html5ever = "0.1"
html5ever = "0.2"
string_cache = "0.1"
string_cache_plugin = "0.1"
euclid = "0.1"
tendril = "0.1.1"