# 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 = "2018" name = "ractor_actors" version = "0.4.4" authors = ["Sean Lawlor"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Helpful actors built with Ractor" homepage = "https://github.com/slawlor/ractor" documentation = "https://docs.rs/ractor_actors" readme = "README.md" keywords = [ "actor", "ractor", ] categories = ["asynchronous"] license = "MIT" repository = "https://github.com/slawlor/ractor" [lib] name = "ractor_actors" path = "src/lib.rs" [[example]] name = "cron" path = "examples/cron.rs" [dependencies.chrono] version = "0.4" optional = true [dependencies.cron] version = "0.12" optional = true [dependencies.notify] version = "6" optional = true [dependencies.ractor] version = "0.13" [dependencies.tokio] version = "1" features = [ "sync", "time", ] [dependencies.tokio-rustls] version = "0.26" optional = true [dependencies.tokio-stream] version = "0.1" optional = true [dependencies.tracing] version = "0.1" [dev-dependencies.tokio] version = "1" features = [ "rt", "time", "sync", "macros", "rt-multi-thread", "signal", ] [dev-dependencies.tracing-glog] version = "0.4" [dev-dependencies.tracing-subscriber] version = "0.3" features = ["env-filter"] [dev-dependencies.tracing-test] version = "0.2" [features] default = [ "filewatcher", "net", "time", "streams", "sync", ] filewatcher = ["notify"] net = [ "tokio/net", "tokio/io-util", "tokio/macros", "tokio-rustls", ] streams = ["tokio-stream"] sync = [] time = [ "chrono", "cron", ]