File tree 7 files changed +23
-23
lines changed
7 files changed +23
-23
lines changed Original file line number Diff line number Diff line change 1
1
language : rust
2
2
rust :
3
- - 1.3 .0
3
+ - 1.12 .0
4
4
- stable
5
5
- beta
6
6
- nightly
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " regex"
3
- version = " 0.1.80 " # :version
3
+ version = " 0.2.0 " # :version
4
4
authors = [" The Rust Project Developers" ]
5
5
license = " MIT/Apache-2.0"
6
6
readme = " README.md"
@@ -16,23 +16,23 @@ finite automata and guarantees linear time matching on all inputs.
16
16
# For very fast prefix literal matching.
17
17
aho-corasick = " 0.5.3"
18
18
# For skipping along search text quickly when a leading byte is known.
19
- memchr = " 0.1.9 "
19
+ memchr = " 1 "
20
20
# For managing regex caches quickly across multiple threads.
21
- thread_local = " 0.2.4 "
21
+ thread_local = " 0.3.2 "
22
22
# For parsing regular expressions.
23
- regex-syntax = { path = " regex-syntax" , version = " 0.3.8 " }
23
+ regex-syntax = { path = " regex-syntax" , version = " 0.4.0 " }
24
24
# For accelerating text search.
25
25
simd = { version = " 0.1.0" , optional = true }
26
26
# For compiling UTF-8 decoding into automata.
27
- utf8-ranges = " 0.1.3 "
27
+ utf8-ranges = " 1 "
28
28
29
29
[dev-dependencies ]
30
30
# For examples.
31
- lazy_static = " 0.1 "
31
+ lazy_static = " 0.2.2 "
32
32
# For property based tests.
33
- quickcheck = " 0.2 "
33
+ quickcheck = " 0.4.1 "
34
34
# For generating random test data.
35
- rand = " 0.3"
35
+ rand = " 0.3.15 "
36
36
37
37
[features ]
38
38
# Enable to use the unstable pattern traits defined in std.
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ libc = "0.2"
17
17
onig = { version = " 0.4" , optional = true }
18
18
libpcre-sys = { version = " 0.2" , optional = true }
19
19
memmap = " 0.2"
20
- regex = { version = " 0.1 " , path = " .." , features = [" simd-accel" ] }
21
- regex_macros = { version = " 0.1 " , path = " ../regex_macros" , optional = true }
22
- regex-syntax = { version = " 0.3 " , path = " ../regex-syntax" }
20
+ regex = { version = " 0.2.0 " , path = " .." , features = [" simd-accel" ] }
21
+ regex_macros = { version = " 0.2.0 " , path = " ../regex_macros" , optional = true }
22
+ regex-syntax = { version = " 0.4.0 " , path = " ../regex-syntax" }
23
23
rustc-serialize = " 0.3"
24
24
25
25
[build-dependencies ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rure"
3
- version = " 0.1.1 " # :version
3
+ version = " 0.2.0 " # :version
4
4
authors = [" The Rust Project Developers" ]
5
5
license = " MIT/Apache-2.0"
6
6
readme = " README.md"
@@ -17,4 +17,4 @@ crate-type = ["staticlib", "cdylib"]
17
17
18
18
[dependencies ]
19
19
libc = " 0.2"
20
- regex = { version = " 0.1.77 " , path = " .." }
20
+ regex = { version = " 0.2.0 " , path = " .." }
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ description = "A tool useful for debugging regular expressions."
11
11
12
12
[dependencies ]
13
13
docopt = " 0.6"
14
- regex = { version = " 0.1 " , path = " .." }
15
- regex-syntax = { version = " 0.3 " , path = " ../regex-syntax" }
14
+ regex = { version = " 0.2 " , path = " .." }
15
+ regex-syntax = { version = " 0.4.0 " , path = " ../regex-syntax" }
16
16
rustc-serialize = " 0.3"
17
17
18
18
[profile .release ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " regex-syntax"
3
- version = " 0.3.9 " # :version
3
+ version = " 0.4.0 " # :version
4
4
authors = [" The Rust Project Developers" ]
5
5
license = " MIT/Apache-2.0"
6
6
repository = " https://github.com/rust-lang/regex"
@@ -9,5 +9,5 @@ homepage = "https://github.com/rust-lang/regex"
9
9
description = " A regular expression parser."
10
10
11
11
[dev-dependencies ]
12
- quickcheck = " 0.2 "
13
- rand = " 0.3"
12
+ quickcheck = " 0.4.1 "
13
+ rand = " 0.3.15 "
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " regex_macros"
3
- version = " 0.1.38 "
3
+ version = " 0.2.0 "
4
4
authors = [" The Rust Project Developers" ]
5
5
license = " MIT/Apache-2.0"
6
6
repository = " https://github.com/rust-lang/regex"
@@ -19,16 +19,16 @@ plugin = true
19
19
20
20
[dependencies .regex ]
21
21
path = " .."
22
- version = " 0.1.63 "
22
+ version = " 0.2.0 "
23
23
features = [" pattern" ]
24
24
25
25
[dependencies .regex-syntax ]
26
26
path = " ../regex-syntax"
27
- version = " 0.3.1 "
27
+ version = " 0.4.0 "
28
28
29
29
[dev-dependencies ]
30
30
# For generating random test data.
31
- rand = " 0.3"
31
+ rand = " 0.3.15 "
32
32
33
33
[[test ]]
34
34
path = " ../tests/test_plugin.rs"
You can’t perform that action at this time.
0 commit comments