2020-01-15 20:43:53 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-tracing"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Rajasekharan Vengalil <avranju@gmail.com>"]
|
|
|
|
description = "Support for tokio tracing with Actix services"
|
|
|
|
keywords = ["network", "framework", "tracing"]
|
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-net.git"
|
2021-02-02 03:07:58 +01:00
|
|
|
documentation = "https://docs.rs/actix-tracing"
|
2020-01-15 20:43:53 +01:00
|
|
|
categories = ["network-programming", "asynchronous"]
|
2020-07-14 12:11:30 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-01-15 20:43:53 +01:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_tracing"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-02-04 21:44:13 +01:00
|
|
|
actix-service = "2.0.0-beta.4"
|
2020-12-29 01:08:59 +01:00
|
|
|
|
2020-03-11 21:10:08 +01:00
|
|
|
futures-util = { version = "0.3.4", default-features = false }
|
2020-01-15 20:43:53 +01:00
|
|
|
tracing = "0.1"
|
|
|
|
tracing-futures = "0.2"
|
|
|
|
|
|
|
|
[dev_dependencies]
|
2021-02-03 11:25:31 +01:00
|
|
|
actix-rt = "2.0.0"
|
2020-12-29 01:08:59 +01:00
|
|
|
slab = "0.4"
|