[package] name = "tower-filter" # When releasing to crates.io: # - Remove path dependencies # - Update html_root_url. # - Update doc url # - Cargo.toml # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. version = "0.1.0" authors = ["Tower Maintainers "] license = "MIT" readme = "README.md" repository = "https://github.com/tower-rs/tower" homepage = "https://github.com/tower-rs/tower" documentation = "https://docs.rs/tower-filter/0.1.0" description = """ Conditionally allow requests to be dispatched to a service based on the result of a predicate. """ categories = ["asynchronous", "network-programming"] edition = "2018" publish = false [dependencies] futures = "0.1.26" tower-service = "0.2.0" tower-layer = "0.1.0" [dev-dependencies] tower-test = { version = "0.1", path = "../tower-test" }