# 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 = "acril" version = "0.1.0" description = "A kitchen-sink actor framework." readme = "README.md" license = "MIT" repository = "https://github.com/PassivityTrading/acril" [[example]] name = "client" required-features = ["http"] [[example]] name = "builder" required-features = ["macros"] [dependencies.acril-http] version = "0.1.0" optional = true [dependencies.acril-macros] version = "0.1.0" optional = true [dependencies.async-tungstenite] version = "0.24" optional = true [dependencies.futures] version = "0.3" [dependencies.http-types] version = "2" optional = true default-features = false [dependencies.pin-project] version = "1.1.3" [dependencies.serde_urlencoded] version = "0.7.1" optional = true [dependencies.tracing] version = "0.1" [dev-dependencies.tracing-subscriber] version = "0.3.18" features = ["env-filter"] [features] default = [] http = [ "dep:acril-http", "dep:http-types", ] macros = [ "dep:acril-macros", "dep:serde_urlencoded", ] websocket = [ "dep:async-tungstenite", "http", ]