Skip to content

Commit 6c0a14a

Browse files
authored
chore: fix upstreaming leftovers (#617)
* chore: rename default branch to main * chore: fix upstreaming leftovers
1 parent 614438e commit 6c0a14a

File tree

11 files changed

+20
-21
lines changed

11 files changed

+20
-21
lines changed

.github/workflows/ci-post-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: CI (post-merge)
22

33
on:
4-
push: { branches: [master] }
4+
push: { branches: [main] }
55

66
permissions: { contents: read }
77

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
merge_group:
77
types: [checks_requested]
88
push:
9-
branches: [master]
9+
branches: [main]
1010

1111
permissions: { contents: read }
1212

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Coverage
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66

77
permissions: { contents: read }
88

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!-- prettier-ignore-start -->
66

77
[![CI](https://github.com/actix/actix-extras/actions/workflows/ci.yml/badge.svg)](https://github.com/actix/actix-extras/actions/workflows/ci.yml)
8-
[![codecov](https://codecov.io/gh/actix/actix-extras/branch/master/graph/badge.svg)](https://codecov.io/gh/actix/actix-extras)
8+
[![codecov](https://codecov.io/gh/actix/actix-extras/branch/main/graph/badge.svg)](https://codecov.io/gh/actix/actix-extras)
99
[![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/5Ux4QGChWc)
1010
[![Dependency Status](https://deps.rs/repo/github/actix/actix-extras/status.svg)](https://deps.rs/repo/github/actix/actix-extras)
1111

@@ -23,6 +23,7 @@
2323
| [actix-settings] | [![crates.io](https://img.shields.io/crates/v/actix-settings?label=latest)](https://crates.io/crates/actix-settings) [![dependency status](https://deps.rs/crate/actix-settings/latest/status.svg)](https://deps.rs/crate/actix-settings) | Easily manage Actix Web's settings from a TOML file and environment variables. |
2424
| [actix-web-httpauth] | [![crates.io](https://img.shields.io/crates/v/actix-web-httpauth?label=latest)](https://crates.io/crates/actix-web-httpauth) [![dependency status](https://deps.rs/crate/actix-web-httpauth/latest/status.svg)](https://deps.rs/crate/actix-web-httpauth) | HTTP authentication schemes. |
2525
| [actix-ws] | [![crates.io](https://img.shields.io/crates/v/actix-ws?label=latest)][actix-ws] [![dependency status](https://deps.rs/crate/actix-ws/latest/status.svg)](https://deps.rs/crate/actix-ws) | WebSockets for Actix Web, without actors. |
26+
| [tracing-actix-web] | [![crates.io](https://img.shields.io/crates/v/tracing-actix-web?label=latest)][tracing-actix-web] [![dependency status](https://deps.rs/crate/tracing-actix-web/latest/status.svg)](https://deps.rs/crate/tracing-actix-web) | Structured logging middleware for actix-web. |
2627

2728
---
2829

@@ -42,7 +43,6 @@ These crates are provided by the community.
4243
| [aliri_actix] | [![crates.io](https://img.shields.io/crates/v/aliri_actix?label=latest)][aliri_actix] [![dependency status](https://deps.rs/crate/aliri_actix/latest/status.svg)](https://deps.rs/crate/aliri_actix) | Endpoint authorization and authentication using scoped OAuth2 JWT tokens. |
4344
| [actix-web-flash-messages] | [![crates.io](https://img.shields.io/crates/v/actix-web-flash-messages?label=latest)][actix-web-flash-messages] [![dependency status](https://deps.rs/crate/actix-web-flash-messages/latest/status.svg)](https://deps.rs/crate/actix-web-flash-messages) | Support for flash messages/one-time notifications in `actix-web`. |
4445
| [awmp] | [![crates.io](https://img.shields.io/crates/v/awmp?label=latest)][awmp] [![dependency status](https://deps.rs/crate/awmp/latest/status.svg)](https://deps.rs/crate/awmp) | An easy to use wrapper around multipart fields for Actix Web. |
45-
| [tracing-actix-web] | [![crates.io](https://img.shields.io/crates/v/tracing-actix-web?label=latest)][tracing-actix-web] [![dependency status](https://deps.rs/crate/tracing-actix-web/latest/status.svg)](https://deps.rs/crate/tracing-actix-web) | A middleware to collect telemetry data from applications built on top of the Actix Web framework. |
4646
| [actix-hash] | [![crates.io](https://img.shields.io/crates/v/actix-hash?label=latest)][actix-hash] [![dependency status](https://deps.rs/crate/actix-hash/latest/status.svg)](https://deps.rs/crate/actix-hash) | Hashing utilities for Actix Web. |
4747
| [actix-bincode] | ![crates.io](https://img.shields.io/crates/v/actix-bincode?label=latest) [![dependency status](https://deps.rs/crate/actix-bincode/latest/status.svg)](https://deps.rs/crate/actix-bincode) | Bincode payload extractor for Actix Web. |
4848
| [sentinel-actix] | ![crates.io](https://img.shields.io/crates/v/sentinel-actix?label=latest) [![dependency status](https://deps.rs/crate/sentinel-actix/latest/status.svg)](https://deps.rs/crate/sentinel-actix) | General and flexible protection for Actix Web. |

actix-cors/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,5 @@ async fn main() -> std::io::Result<()> {
6868
## Documentation & Resources
6969

7070
- [API Documentation](https://docs.rs/actix-cors)
71-
- [Example Project](https://github.com/actix/examples/tree/master/cors)
71+
- [Example Project](https://github.com/actix/examples/tree/main/cors)
7272
- Minimum Supported Rust Version (MSRV): 1.82

actix-protobuf/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
## Documentation & Resources
1515

1616
- [API Documentation](https://docs.rs/actix-protobuf)
17-
- [Example Project](https://github.com/actix/examples/tree/master/protobuf)
17+
- [Example Project](https://github.com/actix/examples/tree/main/protobuf)
1818
- Minimum Supported Rust Version (MSRV): 1.57
1919

2020
## Example
@@ -38,7 +38,7 @@ async fn index(msg: ProtoBuf<MyObj>) -> Result<HttpResponse> {
3838
}
3939
```
4040

41-
See [here](https://github.com/actix/examples/tree/master/protobuf) for the complete example.
41+
See [here](https://github.com/actix/examples/tree/main/protobuf) for the complete example.
4242

4343
## License
4444

actix-settings/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ Have a look at [the usage example][usage] to see how.
2727

2828
This crate was made possible by support from Accept B.V and [@jjpe].
2929

30-
[usage]: https://github.com/actix/actix-extras/blob/master/actix-settings/examples/actix.rs
30+
[usage]: https://github.com/actix/actix-extras/blob/main/actix-settings/examples/actix.rs
3131
[@jjpe]: https://github.com/jjpe

actix-ws/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ async fn main() -> std::io::Result<()> {
6161
## Resources
6262

6363
- [API Documentation](https://docs.rs/actix-ws)
64-
- [Example Chat Project](https://github.com/actix/examples/tree/master/websockets/chat-actorless)
64+
- [Example Chat Project](https://github.com/actix/examples/tree/main/websockets/chat-actorless)
6565
- Minimum Supported Rust Version (MSRV): 1.82
6666

6767
## License

tracing-actix-web/Cargo.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,18 @@ members = [
1010
name = "tracing-actix-web"
1111
version = "0.7.19"
1212
authors = ["Luca Palmieri <[email protected]>"]
13-
edition = "2018"
14-
15-
license = "MIT/Apache-2.0"
16-
17-
repository = "https://github.com/LukeMathWalker/tracing-actix-web"
1813
documentation = "https://docs.rs/tracing-actix-web/"
1914
readme = "README.md"
20-
2115
description = "Structured logging middleware for actix-web."
22-
2316
keywords = ["http", "actix-web", "tracing", "logging"]
2417
categories = ["asynchronous", "web-programming"]
2518

19+
repository.workspace = true
20+
homepage.workspace = true
21+
license.workspace = true
22+
edition.workspace = true
23+
rust-version.workspace = true
24+
2625
[features]
2726
default = ["emit_event_on_error"]
2827
opentelemetry_0_13 = [

tracing-actix-web/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ fn main() {
8484
}
8585
```
8686

87-
Check out [the examples on GitHub](https://github.com/LukeMathWalker/tracing-actix-web/tree/main/examples) to get a taste of how [`TracingLogger`] can be used to observe and monitor your
87+
Check out [the examples on GitHub](https://github.com/actix/tracing-actix-web/tree/main/examples) to get a taste of how [`TracingLogger`] can be used to observe and monitor your
8888
application.
8989

9090
# From zero to hero: a crash course in observability
@@ -312,7 +312,7 @@ You can then find all logs for the same request across all the services it touch
312312
If you add [`tracing-opentelemetry::OpenTelemetryLayer`](https://docs.rs/tracing-opentelemetry/0.17.0/tracing_opentelemetry/struct.OpenTelemetryLayer.html)
313313
in your `tracing::Subscriber` you will be able to export the root span (and all its children) as OpenTelemetry spans.
314314

315-
Check out the [relevant example in the GitHub repository](https://github.com/LukeMathWalker/tracing-actix-web/tree/main/examples/opentelemetry) for reference.
315+
Check out the [relevant example in the GitHub repository](https://github.com/actix/tracing-actix-web/tree/main/examples/opentelemetry) for reference.
316316

317317
# License
318318

0 commit comments

Comments
 (0)