diff options
Diffstat (limited to 'vendor/ucd-parse/Cargo.toml')
-rw-r--r-- | vendor/ucd-parse/Cargo.toml | 32 |
1 files changed, 21 insertions, 11 deletions
diff --git a/vendor/ucd-parse/Cargo.toml b/vendor/ucd-parse/Cargo.toml index f7efa0970..5b2520fcc 100644 --- a/vendor/ucd-parse/Cargo.toml +++ b/vendor/ucd-parse/Cargo.toml @@ -3,29 +3,39 @@ # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies -# to registry (e.g., crates.io) dependencies +# to registry (e.g., crates.io) dependencies. # -# If you believe there's an error in this file please file an -# issue against the rust-lang/cargo repository. If you're -# editing this file be aware that the upstream Cargo.toml -# will likely look very different (and much more reasonable) +# If you are reading this file be aware that the original Cargo.toml +# will likely look very different (and much more reasonable). +# See Cargo.toml.orig for the original contents. [package] edition = "2018" name = "ucd-parse" -version = "0.1.8" +version = "0.1.10" authors = ["Andrew Gallant <jamslam@gmail.com>"] -description = "A library for parsing data files in the Unicode character database.\n" +description = """ +A library for parsing data files in the Unicode character database. +""" homepage = "https://github.com/BurntSushi/ucd-generate" documentation = "https://docs.rs/ucd-parse" readme = "README.md" -keywords = ["unicode", "database", "character", "property"] -license = "MIT/Apache-2.0" +keywords = [ + "unicode", + "database", + "character", + "property", +] +license = "MIT OR Apache-2.0" repository = "https://github.com/BurntSushi/ucd-generate" -[dependencies.lazy_static] + +[dependencies.once_cell] version = "1" [dependencies.regex] version = "1" -features = ["std", "unicode"] +features = [ + "std", + "unicode", +] default-features = false |