blob: 0f206ba5a81f7bb2b8993aa0157f439898c0187e [file] [log] [blame]
Jakub Koturdd59cf92020-12-21 17:28:14 +01001# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
Joel Galenson6b1d0012021-09-22 10:51:18 -07006# to registry (e.g., crates.io) dependencies.
Jakub Koturdd59cf92020-12-21 17:28:14 +01007#
Joel Galenson6b1d0012021-09-22 10:51:18 -07008# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
Jakub Koturdd59cf92020-12-21 17:28:14 +010011
12[package]
Joel Galenson906f1452021-05-19 14:29:24 -070013edition = "2018"
Jakub Koturdd59cf92020-12-21 17:28:14 +010014name = "bstr"
Joel Galenson6b1d0012021-09-22 10:51:18 -070015version = "0.2.17"
Jakub Koturdd59cf92020-12-21 17:28:14 +010016authors = ["Andrew Gallant <jamslam@gmail.com>"]
17exclude = ["/.github"]
18description = "A string type that is not required to be valid UTF-8."
19homepage = "https://github.com/BurntSushi/bstr"
20documentation = "https://docs.rs/bstr"
21readme = "README.md"
22keywords = ["string", "str", "byte", "bytes", "text"]
23categories = ["text-processing", "encoding"]
24license = "MIT OR Apache-2.0"
25repository = "https://github.com/BurntSushi/bstr"
26[profile.release]
27debug = true
28
29[lib]
30bench = false
31[dependencies.lazy_static]
Joel Galenson906f1452021-05-19 14:29:24 -070032version = "1.2.0"
Jakub Koturdd59cf92020-12-21 17:28:14 +010033optional = true
34
35[dependencies.memchr]
Joel Galenson906f1452021-05-19 14:29:24 -070036version = "2.4.0"
Jakub Koturdd59cf92020-12-21 17:28:14 +010037default-features = false
38
39[dependencies.regex-automata]
40version = "0.1.5"
41optional = true
42default-features = false
43
44[dependencies.serde]
45version = "1.0.85"
46optional = true
47default-features = false
48[dev-dependencies.quickcheck]
Joel Galensonbd985812021-04-01 15:14:48 -070049version = "1"
Jakub Koturdd59cf92020-12-21 17:28:14 +010050default-features = false
51
52[dev-dependencies.ucd-parse]
53version = "0.1.3"
54
55[dev-dependencies.unicode-segmentation]
56version = "1.2.1"
57
58[features]
59default = ["std", "unicode"]
60serde1 = ["std", "serde1-nostd", "serde/std"]
61serde1-nostd = ["serde"]
Joel Galenson906f1452021-05-19 14:29:24 -070062std = ["memchr/std"]
Jakub Koturdd59cf92020-12-21 17:28:14 +010063unicode = ["lazy_static", "regex-automata"]