[package]
edition = "2021"
name = "atomr-profiler"
version = "0.9.2"
authors = ["atomr contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cross-runtime actor profiler for atomr — same scenarios in Rust and Python with a shared JSON schema."
homepage = "https://github.com/rustakka/atomr"
documentation = "https://docs.rs/atomr-profiler"
readme = "README.md"
keywords = [
"actor",
"profiler",
"benchmark",
]
categories = [
"development-tools::profiling",
"concurrency",
]
license = "Apache-2.0"
repository = "https://github.com/rustakka/atomr"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "atomr_profiler"
path = "src/lib.rs"
[[bin]]
name = "atomr-profiler"
path = "src/bin/atomr_profiler.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.atomr]
version = "0.9.2"
[dependencies.atomr-core]
version = "0.9.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1.39"
features = ["full"]
[dev-dependencies.tokio]
version = "1.39"
features = ["full"]
[lints.clippy]
todo = "deny"
unimplemented = "deny"