File tree 5 files changed +8
-8
lines changed
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " regex"
3
- version = " 0.2.11 " # :version
3
+ version = " 1.0.0 " # :version
4
4
authors = [" The Rust Project Developers" ]
5
5
license = " MIT/Apache-2.0"
6
6
readme = " README.md"
@@ -30,7 +30,7 @@ memchr = "2.0.0"
30
30
# For managing regex caches quickly across multiple threads.
31
31
thread_local = " 0.3.2"
32
32
# For parsing regular expressions.
33
- regex-syntax = { path = " regex-syntax" , version = " 0.5.6 " }
33
+ regex-syntax = { path = " regex-syntax" , version = " 0.6.0 " }
34
34
# For compiling UTF-8 decoding into automata.
35
35
utf8-ranges = " 1.0.0"
36
36
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ libc = "0.2"
18
18
onig = { version = " 3" , optional = true }
19
19
libpcre-sys = { version = " 0.2" , optional = true }
20
20
memmap = " 0.6"
21
- regex = { version = " 0.2 .0" , path = " .." , features = [" unstable" ] }
22
- regex-syntax = { version = " 0.5.6 " , path = " ../regex-syntax" }
21
+ regex = { version = " 1.0 .0" , path = " .." , features = [" unstable" ] }
22
+ regex-syntax = { version = " 0.6.0 " , path = " ../regex-syntax" }
23
23
serde = " 1"
24
24
serde_derive = " 1"
25
25
Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ crate-type = ["staticlib", "cdylib"]
18
18
19
19
[dependencies ]
20
20
libc = " 0.2"
21
- regex = { version = " 0.2 .0" , path = " .." }
21
+ regex = { version = " 1.0 .0" , path = " .." }
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ workspace = ".."
12
12
13
13
[dependencies ]
14
14
docopt = " 0.8"
15
- regex = { version = " 0.2 " , path = " .." }
16
- regex-syntax = { version = " 0.5.6 " , path = " ../regex-syntax" }
15
+ regex = { version = " 1.0 " , path = " .." }
16
+ regex-syntax = { version = " 0.6.0 " , path = " ../regex-syntax" }
17
17
serde = " 1"
18
18
serde_derive = " 1"
19
19
utf8-ranges = " 1"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " regex-syntax"
3
- version = " 0.5.6 " # :version
3
+ version = " 0.6.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"
You can’t perform that action at this time.
0 commit comments