1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 23:51:06 +01:00
actix-extras/Cargo.toml
Rob Ede bb553b2308
adopt actix-limitation crate (#229)
* import code from actix-limitation master branch

* fix compilation

* update legal info

* fix compile errors

* ignore failing tests

* remove futures dep

* add changelog

* update readme

* fix doc test example
2022-03-18 17:00:33 +00:00

30 lines
868 B
TOML

[workspace]
resolver = "2"
members = [
"actix-cors",
"actix-identity",
"actix-limitation",
"actix-protobuf",
"actix-redis",
"actix-session",
"actix-web-httpauth",
]
# TODO: move this example to examples repo
# "actix-protobuf/examples/prost-example",
[patch.crates-io]
actix-cors = { path = "./actix-cors" }
actix-identity = { path = "./actix-identity" }
actix-limitation = { path = "./actix-limitation" }
actix-protobuf = { path = "./actix-protobuf" }
actix-redis = { path = "./actix-redis" }
actix-session = { path = "./actix-session" }
actix-web-httpauth = { path = "./actix-web-httpauth" }
# uncomment to quickly test against local actix-web repo
# actix-http = { path = "../actix-web/actix-http" }
# actix-router = { path = "../actix-web/actix-router" }
# actix-web = { path = "../actix-web" }
# awc = { path = "../actix-web/awc" }