2019-03-01 23:59:44 -08:00
|
|
|
[workspace]
|
2021-08-31 02:52:29 +01:00
|
|
|
resolver = "2"
|
2019-03-01 23:59:44 -08:00
|
|
|
members = [
|
2021-04-17 15:30:31 +01:00
|
|
|
"actix-files",
|
2022-01-03 14:59:01 +00:00
|
|
|
"actix-http-test",
|
|
|
|
"actix-http",
|
2021-04-17 15:30:31 +01:00
|
|
|
"actix-multipart",
|
2023-02-26 03:26:06 +00:00
|
|
|
"actix-multipart-derive",
|
2022-01-03 14:59:01 +00:00
|
|
|
"actix-router",
|
|
|
|
"actix-test",
|
2021-04-17 15:30:31 +01:00
|
|
|
"actix-web-actors",
|
|
|
|
"actix-web-codegen",
|
2022-02-01 00:30:41 +00:00
|
|
|
"actix-web",
|
2022-01-03 14:59:01 +00:00
|
|
|
"awc",
|
2019-03-01 23:59:44 -08:00
|
|
|
]
|
|
|
|
|
2021-09-08 17:42:14 +01:00
|
|
|
[profile.dev]
|
|
|
|
# Disabling debug info speeds up builds a bunch and we don't rely on it for debugging that much.
|
|
|
|
debug = 0
|
|
|
|
|
2017-09-30 09:10:03 -07:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
opt-level = 3
|
2018-02-15 13:59:25 -08:00
|
|
|
codegen-units = 1
|
2019-04-01 10:26:09 -07:00
|
|
|
|
2019-12-15 13:28:54 +06:00
|
|
|
[patch.crates-io]
|
2021-04-02 08:26:59 +01:00
|
|
|
actix-files = { path = "actix-files" }
|
2020-02-18 20:28:45 +02:00
|
|
|
actix-http = { path = "actix-http" }
|
2020-12-03 01:23:30 +08:00
|
|
|
actix-http-test = { path = "actix-http-test" }
|
2021-04-02 08:26:59 +01:00
|
|
|
actix-multipart = { path = "actix-multipart" }
|
2023-02-26 03:26:06 +00:00
|
|
|
actix-multipart-derive = { path = "actix-multipart-derive" }
|
2021-08-06 22:42:31 +01:00
|
|
|
actix-router = { path = "actix-router" }
|
2021-04-02 08:26:59 +01:00
|
|
|
actix-test = { path = "actix-test" }
|
2022-02-01 00:33:41 +00:00
|
|
|
actix-web = { path = "actix-web" }
|
2021-01-07 20:02:08 +00:00
|
|
|
actix-web-actors = { path = "actix-web-actors" }
|
2019-12-15 13:28:54 +06:00
|
|
|
actix-web-codegen = { path = "actix-web-codegen" }
|
2020-01-10 11:36:59 +06:00
|
|
|
awc = { path = "awc" }
|
2020-01-25 01:05:25 +02:00
|
|
|
|
2021-11-30 14:12:04 +00:00
|
|
|
# uncomment for quick testing against local actix-net repo
|
|
|
|
# actix-service = { path = "../actix-net/actix-service" }
|
|
|
|
# actix-macros = { path = "../actix-net/actix-macros" }
|
|
|
|
# actix-rt = { path = "../actix-net/actix-rt" }
|
|
|
|
# actix-codec = { path = "../actix-net/actix-codec" }
|
|
|
|
# actix-utils = { path = "../actix-net/actix-utils" }
|
|
|
|
# actix-tls = { path = "../actix-net/actix-tls" }
|
|
|
|
# actix-server = { path = "../actix-net/actix-server" }
|