aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: b4fcd7a0d3df73958868e7a84c83ca9d3f007212 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# 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
#
# 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)

[package]
name = "regex-automata"
version = "0.1.10"
authors = ["Andrew Gallant <jamslam@gmail.com>"]
exclude = ["/.travis.yml", "/appveyor.yml", "/ci/*", "/scripts/*", "/regex-automata-debug"]
autoexamples = false
autotests = false
description = "Automata construction and matching using regular expressions."
homepage = "https://github.com/BurntSushi/regex-automata"
documentation = "https://docs.rs/regex-automata"
readme = "README.md"
keywords = ["regex", "dfa", "automata", "automaton", "nfa"]
categories = ["text-processing"]
license = "Unlicense/MIT"
repository = "https://github.com/BurntSushi/regex-automata"
[profile.bench]
debug = true

[profile.dev]
opt-level = 3
debug = true

[profile.release]
debug = true

[profile.test]
opt-level = 3
debug = true

[lib]
bench = false

[[test]]
name = "default"
path = "tests/tests.rs"
[dependencies.fst]
version = "0.4.0"
optional = true

[dependencies.regex-syntax]
version = "0.6.16"
optional = true
[dev-dependencies.bstr]
version = "0.2"
features = ["std"]
default-features = false

[dev-dependencies.lazy_static]
version = "1.2.0"

[dev-dependencies.regex]
version = "1.1"

[dev-dependencies.serde]
version = "1.0.82"

[dev-dependencies.serde_bytes]
version = "0.11"

[dev-dependencies.serde_derive]
version = "1.0.82"

[dev-dependencies.toml]
version = "0.4.10"

[features]
default = ["std"]
std = ["regex-syntax"]
transducer = ["std", "fst"]
[badges.appveyor]
repository = "BurntSushi/regex-automata"

[badges.travis-ci]
repository = "BurntSushi/regex-automata"