Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "html5ever"
version = "0.12.1"
version = "0.13.0"
authors = [ "The html5ever Project Developers" ]
license = "MIT / Apache-2.0"
repository = "https://github.com/servo/html5ever"
Expand Down Expand Up @@ -41,7 +41,7 @@ mac = "0"
tendril = "0.2.2"
heapsize = { version = "0.3", optional = true }
heapsize_derive = { version = "0.1", optional = true }
html5ever-atoms = { version = "0.1", path = "./atoms" }
html5ever-atoms = { version = "0.2", path = "./atoms" }

[dev-dependencies]
rustc-serialize = "0.3.15"
Expand Down
6 changes: 3 additions & 3 deletions atoms/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "html5ever-atoms"
version = "0.1.3"
version = "0.2.0"
authors = [ "The html5ever Project Developers" ]
license = "MIT / Apache-2.0"
repository = "https://github.com/servo/html5ever"
Expand All @@ -12,10 +12,10 @@ build = "build.rs"
path = "lib.rs"

[features]
heap_size = ["heapsize", "heapsize_derive", "string_cache/heap_size"]
heap_size = ["heapsize", "heapsize_derive", "string_cache/heapsize"]

[dependencies]
string_cache = "0.3"
string_cache = "0.4"
heapsize = { version = "0.3", optional = true }
heapsize_derive = { version = "0.1", optional = true }

Expand Down