-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make color use serde, and update serialization to be derived.
- Loading branch information
1 parent
e89af28
commit 5dfe3e7
Showing
4 changed files
with
23 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "cssparser" | ||
version = "0.33.0" | ||
authors = [ "Simon Sapin <[email protected]>" ] | ||
authors = ["Simon Sapin <[email protected]>"] | ||
|
||
description = "Rust implementation of CSS Syntax Level 3" | ||
documentation = "https://docs.rs/cssparser/" | ||
|
@@ -20,11 +20,11 @@ difference = "2.0" | |
encoding_rs = "0.8" | ||
|
||
[dependencies] | ||
cssparser-macros = {path = "./macros", version = "0.6.1"} | ||
cssparser-macros = { path = "./macros", version = "0.6.1" } | ||
dtoa-short = "0.3" | ||
itoa = "1.0" | ||
phf = {version = "0.11.2", features = ["macros"]} | ||
serde = {version = "1.0", optional = true} | ||
phf = { version = "0.11.2", features = ["macros"] } | ||
serde = { version = "1.0", features = ["derive"], optional = true } | ||
smallvec = "1.0" | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters