mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 15:51:06 +01:00
7e6335a09f
Co-authored-by: Rob Ede <robjtede@icloud.com> Co-authored-by: Luca P <rust@lpalmieri.com> Co-authored-by: Sebastian Rollén <38324289+SebRollen@users.noreply.github.com>
27 lines
800 B
TOML
27 lines
800 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"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",
|
|
]
|
|
|
|
[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" }
|
|
|
|
# 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" }
|