Skip to content

Commit a8afba1

Browse files
atouchetkhuey
authored andcommitted
Fix crates.io badge and formatting and update links
1 parent 3eaac1d commit a8afba1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `cpp_demangle`: a C++ linker symbol demangler
22

3-
[![](https://docs.rs/cpp_demangle/badge.svg)](https://docs.rs/cpp_demangle/) [![](http://meritbadge.herokuapp.com/cpp_demangle) ![](https://img.shields.io/crates/d/cpp_demangle.png)](https://crates.io/crates/cpp_demangle) [![Build Status](https://travis-ci.org/gimli-rs/cpp_demangle.png?branch=master)](https://travis-ci.org/gimli-rs/cpp_demangle)
3+
[![](https://docs.rs/cpp_demangle/badge.svg)](https://docs.rs/cpp_demangle/) [![](https://img.shields.io/crates/v/cpp_demangle.svg) ![](https://img.shields.io/crates/d/cpp_demangle.png)](https://crates.io/crates/cpp_demangle) [![Build Status](https://travis-ci.org/gimli-rs/cpp_demangle.png?branch=master)](https://travis-ci.org/gimli-rs/cpp_demangle)
44

55
This crate can parse a C++ “mangled” linker symbol name into a Rust value
66
describing what the name refers to: a variable, a function, a virtual table,
@@ -14,7 +14,7 @@ declarations can pair up definitions in one unit with references in another.
1414
Almost all platforms other than Microsoft Windows follow the
1515
[Itanium C++ ABI][itanium]'s rules for this.
1616

17-
[itanium]: http://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangle
17+
[itanium]: https://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangle
1818

1919
For example, suppose a C++ compilation unit has the definition:
2020

@@ -61,7 +61,7 @@ moment, since the `alloc` crate's collections aren't stabilized.
6161

6262
Disable the "std" feature, and enable the "alloc" feature:
6363

64-
```tom
64+
```toml
6565
[dependencies]
6666
cpp_demangle = {
6767
version = "0.3.3",
@@ -101,8 +101,8 @@ long time now (and never found any crashes -- thanks Rust!).
101101

102102
Licensed under either of
103103

104-
* Apache License, Version 2.0 ([`LICENSE-APACHE`](./LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
105-
* MIT license ([`LICENSE-MIT`](./LICENSE-MIT) or http://opensource.org/licenses/MIT)
104+
* Apache License, Version 2.0 ([`LICENSE-APACHE`](./LICENSE-APACHE) or https://www.apache.org/licenses/LICENSE-2.0)
105+
* MIT license ([`LICENSE-MIT`](./LICENSE-MIT) or https://opensource.org/licenses/MIT)
106106

107107
at your option.
108108

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//! another. Almost all platforms other than Microsoft Windows follow the
1111
//! [Itanium C++ ABI][itanium]'s rules for this.
1212
//!
13-
//! [itanium]: http://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangle
13+
//! [itanium]: https://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangle
1414
//!
1515
//! For example, suppose a C++ compilation unit has the definition:
1616
//!

0 commit comments

Comments
 (0)