diff --git a/Cargo.toml b/Cargo.toml index 2d4ff0e..39a1932 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,18 +2,17 @@ members = [".", "examples/opentelemetry", "examples/custom-root-span", "examples/request-id-response-header"] [package] -name = "tracing-actix-web" -version = "0.8.0-blockscout.1" -authors = ["Luca Palmieri "] +name = "blockscout-tracing-actix-web" +version = "0.8.0" edition = "2018" license = "MIT/Apache-2.0" -repository = "https://github.com/LukeMathWalker/tracing-actix-web" +repository = "https://github.com/blockscout/tracing-actix-web" documentation = "https://docs.rs/tracing-actix-web/" readme = "README.md" -description = "Structured logging middleware for actix-web." +description = "The fork of tracing-actix-web with changes specific to Blockscout rust services." keywords = ["http", "actix-web", "tracing", "logging"] categories = ["asynchronous", "web-programming"] diff --git a/README.md b/README.md index 8de2155..8928116 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,12 @@
+## Note +This is a fork of [`tracing-actix-web`](https://github.com/LukeMathWalker/tracing-actix-web/) library updated specifically with the +needs of [Blockscout rust microservices](https://github.com/blockscout/blockscout-rs/) in mind. + +# Original decription + `tracing-actix-web` provides [`TracingLogger`], a middleware to collect telemetry data from applications built on top of the [`actix-web`] framework. > `tracing-actix-web` was initially developed for the telemetry chapter of [Zero to Production In Rust](https://zero2prod.com), a hands-on introduction to backend development using the Rust programming language.