1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 15:51:06 +01:00
actix-extras/Cargo.toml

27 lines
800 B
TOML
Raw Normal View History

2020-01-30 01:31:25 +01:00
[workspace]
2021-08-31 00:28:11 +02:00
resolver = "2"
2020-01-30 01:31:25 +01:00
members = [
2021-06-27 08:02:38 +02:00
"actix-cors",
"actix-identity",
"actix-protobuf",
# TODO: move this example to examples repo
# "actix-protobuf/examples/prost-example",
"actix-redis",
"actix-session",
"actix-web-httpauth",
2020-01-30 01:31:25 +01:00
]
[patch.crates-io]
actix-cors = { path = "./actix-cors" }
actix-identity = { path = "./actix-identity" }
actix-protobuf = { path = "./actix-protobuf" }
actix-redis = { path = "./actix-redis" }
actix-session = { path = "./actix-session" }
actix-web-httpauth = { path = "./actix-web-httpauth" }
2021-12-29 11:22:56 +01:00
# uncomment to quickly test against local actix-web repo
# actix-http = { path = "../actix-web/actix-http" }
2022-01-19 18:05:38 +01:00
# actix-router = { path = "../actix-web/actix-router" }
2021-12-29 11:22:56 +01:00
# actix-web = { path = "../actix-web" }
# awc = { path = "../actix-web/awc" }