stagecraft 0.1.0

An actor framework for tokio
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "stagecraft"
version = "0.1.0"
authors = ["Matilde Morrone <contact@matilde.pet>"]
build = false
include = [
    "src/**/*.rs",
    "examples/**/*.rs",
    "README.md",
    "LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An actor framework for tokio"
documentation = "https://docs.rs/stagecraft"
readme = "README.md"
keywords = [
    "actor",
    "tokio",
    "async",
    "framework",
]
categories = [
    "asynchronous",
    "concurrency",
]
license = "Apache-2.0"
repository = "https://github.com/verdiwm/stagecraft"
resolver = "2"

[lib]
name = "stagecraft"
path = "src/lib.rs"

[[example]]
name = "counter"
path = "examples/counter.rs"

[dependencies.futures-core]
version = "0.3.32"

[dependencies.stagecraft-macros]
version = "0.1.0"

[dependencies.tokio]
version = "1.50.0"
features = ["macros"]

[dependencies.tokio-stream]
version = "0.1.18"

[dependencies.tokio-util]
version = "0.7.18"
features = ["rt"]

[dev-dependencies.tokio]
version = "1.50.0"
features = [
    "macros",
    "rt-multi-thread",
]