1 | [package] |
2 | name = "svgtypes" |
3 | version = "0.15.3" |
4 | license = "Apache-2.0 OR MIT" |
5 | edition = "2021" |
6 | description = "SVG types parser." |
7 | repository = "https://github.com/linebender/svgtypes" |
8 | keywords = ["svg" , "parser" , "tokenizer" ] |
9 | categories = ["parser-implementations" ] |
10 | readme = "README.md" |
11 | # Keep in sync with RUST_MIN_VER in .github/workflows/ci.yml and with the relevant README.md files. |
12 | # and with the MSRV in the `Unreleased` section of CHANGELOG.md. |
13 | rust-version = "1.65" |
14 | exclude = [".github" , ".clippy.toml" , ".gitignore" , ".typos.toml" , "benches/" , "codegen/" , "fuzz/" ] |
15 | |
16 | [workspace] |
17 | members = ["benches" ] |
18 | |
19 | [dependencies] |
20 | siphasher = "1.0" # perfect hash implementation for color names |
21 | kurbo = "0.11" # ArcTo to CurveTo(s) |
22 | |