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

34 lines
934 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-limitation",
2021-06-27 08:02:38 +02:00
"actix-protobuf",
"actix-redis",
"actix-session",
"actix-settings",
2021-06-27 08:02:38 +02:00
"actix-web-httpauth",
2020-01-30 01:31:25 +01:00
]
# TODO(MSRV 1.64)
# [workspace.package]
# edition = "2018"
# rust-version = "1.60"
2023-03-22 22:17:30 +01:00
[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-settings = { path = "./actix-settings" }
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" }