1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 00:01:11 +01:00
actix-net/actix-tracing/Cargo.toml

33 lines
798 B
TOML
Raw Normal View History

[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"
categories = ["network-programming", "asynchronous"]
license = "MIT OR Apache-2.0"
2023-07-17 04:05:39 +02:00
edition.workspace = true
rust-version.workspace = true
[package.metadata.cargo_check_external_types]
allowed_external_types = [
"actix_service::*",
"actix_utils::*",
"tracing::*",
"tracing_futures::*",
]
[dependencies]
2022-10-21 04:15:48 +02:00
actix-service = "2"
actix-utils = "3"
2022-07-23 02:47:59 +02:00
tracing = "0.1.35"
tracing-futures = "0.2"
[dev_dependencies]
2022-10-21 04:15:48 +02:00
actix-rt = "2"
slab = "0.4"