# 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 = "2021" name = "uactor" version = "0.11.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "The fastest and most modular actor system that doesn't force you to pay for what you don't need" readme = "README.md" keywords = [ "actor", "actor-system", "stream", "actor-stream", "spawn-process", ] license = "MIT" repository = "https://github.com/EnvOut/uactor" [lib] name = "uactor" path = "src/lib.rs" [[example]] name = "dependency_injection" path = "examples/dependency_injection.rs" [[example]] name = "interval" path = "examples/interval.rs" [[example]] name = "multiple_incoming_channels" path = "examples/multiple_incoming_channels.rs" [[example]] name = "shared_state" path = "examples/shared_state.rs" [[example]] name = "single_channel_actor" path = "examples/single_channel_actor.rs" [[example]] name = "supervised_actor" path = "examples/supervised_actor.rs" [dependencies.bytes] version = "1" optional = true [dependencies.derive-new] version = "0.6.0" [dependencies.derive_more] version = "1" features = ["full"] [dependencies.either] version = "1.13.0" [dependencies.futures] version = "0.3" [dependencies.paste] version = "1.0" [dependencies.rand] version = "0.8" [dependencies.thiserror] version = "1.0" [dependencies.tokio] version = "1.35.0" features = [ "net", "sync", "time", "rt", "macros", "rt-multi-thread", ] [dependencies.tracing] version = "0.1" [dev-dependencies.anyhow] version = "1" [dev-dependencies.time] version = "0.3" [dev-dependencies.tokio] version = "1.35.0" features = [ "net", "sync", "time", "rt", "macros", "rt-multi-thread", ] [dev-dependencies.tracing-subscriber] version = "0.3" [features] async_sender = [] default = ["tokio_tracing"] tokio_tracing = []