# 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 = "myriam" version = "0.1.3" authors = ["Ariela Wenner "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Actor model implementation for local and remote actors." homepage = "https://codeberg.org/arisunz/myriam-rs" readme = "README.md" keywords = [ "actor", "actors", "distributed", ] categories = [ "concurrency", "network-programming", "asynchronous", ] license = "Apache-2.0" repository = "https://codeberg.org/arisunz/myriam-rs" [lib] name = "myriam" path = "src/lib.rs" [[test]] name = "tor_layer" path = "tests/tor_layer.rs" [dependencies.bincode] version = "1.3.3" [dependencies.hex] version = "0.4.3" optional = true [dependencies.rand] version = "0.8.5" optional = true [dependencies.serde] version = "1.0.203" features = ["derive"] optional = true [dependencies.socks5-impl] version = "0.5.14" optional = true [dependencies.tokio] version = "1.38.0" features = ["full"] [dependencies.tracing] version = "0.1.40" [dev-dependencies.tracing-subscriber] version = "0.3.18" [features] default = [ "remote", "tcp", "tor", ] remote = [ "dep:serde", "dep:rand", "dep:hex", ] tcp = ["remote"] tor = [ "dep:socks5-impl", "remote", ]