Skip to content

Commit f0a1584

Browse files
committed
docs: link to docs.rs
1 parent d07b285 commit f0a1584

File tree

7 files changed

+9
-10
lines changed

7 files changed

+9
-10
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
77
repository = "https://github.com/rust-lang/regex"
8-
documentation = "https://doc.rust-lang.org/regex"
8+
documentation = "https://docs.rs/regex"
99
homepage = "https://github.com/rust-lang/regex"
1010
description = """
1111
An implementation of regular expressions for Rust. This implementation uses

PERFORMANCE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Your friendly guide to understanding the performance characteristics of this
22
crate.
33

44
This guide assumes some familiarity with the public API of this crate, which
5-
can be found here: http://doc.rust-lang.org/regex/regex/index.html
5+
can be found here: https://docs.rs/regex
66

77
## Theory vs. Practice
88

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ by [RE2](https://github.com/google/re2).
1414

1515
### Documentation
1616

17-
[Module documentation with examples](https://doc.rust-lang.org/regex).
17+
[Module documentation with examples](https://docs.rs/regex).
1818
The module documentation also include a comprehensive description of the syntax
1919
supported.
2020

2121
Documentation with examples for the various matching functions and iterators
2222
can be found on the
23-
[`Regex` type](https://doc.rust-lang.org/regex/regex/struct.Regex.html).
23+
[`Regex` type](https://docs.rs/regex/*/regex/struct.Regex.html).
2424

2525
### Usage
2626

@@ -197,8 +197,7 @@ execution. This may be useful if you're implementing your own regex engine or
197197
otherwise need to do analysis on the syntax of a regular expression. It is
198198
otherwise not recommended for general use.
199199

200-
[Documentation for `regex-syntax` with
201-
examples](https://doc.rust-lang.org/regex/regex_syntax/index.html).
200+
[Documentation for `regex-syntax` with examples](https://docs.rs/regex-syntax).
202201

203202
# License
204203

bench/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version = "0.1.0"
55
authors = ["The Rust Project Developers"]
66
license = "MIT/Apache-2.0"
77
repository = "https://github.com/rust-lang/regex"
8-
documentation = "http://doc.rust-lang.org/regex/regex/index.html"
8+
documentation = "https://docs.rs/regex"
99
homepage = "https://github.com/rust-lang/regex"
1010
description = "Regex benchmarks for Rust's and other engines."
1111
build = "build.rs"

regex-capi/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The header file (`includes/rure.h`) serves as the primary API documentation of
1212
this library. Types and flags are documented first, and functions follow.
1313

1414
The syntax and possibly other useful things are documented in the Rust
15-
API documentation: http://doc.rust-lang.org/regex/regex/index.html
15+
API documentation: https://docs.rs/regex
1616

1717

1818
Examples

regex-debug/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version = "0.1.0"
55
authors = ["The Rust Project Developers"]
66
license = "MIT/Apache-2.0"
77
repository = "https://github.com/rust-lang/regex"
8-
documentation = "http://doc.rust-lang.org/regex"
8+
documentation = "https://docs.rs/regex"
99
homepage = "https://github.com/rust-lang/regex"
1010
description = "A tool useful for debugging regular expressions."
1111
workspace = ".."

regex-syntax/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.4.1" #:version
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rust-lang/regex"
7-
documentation = "http://doc.rust-lang.org/regex/regex_syntax/index.html"
7+
documentation = "https://docs.rs/regex-syntax"
88
homepage = "https://github.com/rust-lang/regex"
99
description = "A regular expression parser."
1010
workspace = ".."

0 commit comments

Comments
 (0)