1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-08 03:23:06 +00:00
actix-web/Cargo.toml

52 lines
1.4 KiB
TOML
Raw Permalink Normal View History

2019-03-02 07:59:44 +00:00
[workspace]
2021-08-31 01:52:29 +00:00
resolver = "2"
2019-03-02 07:59:44 +00:00
members = [
2021-04-17 14:30:31 +00:00
"actix-files",
2022-01-03 14:59:01 +00:00
"actix-http-test",
"actix-http",
2021-04-17 14:30:31 +00:00
"actix-multipart",
"actix-multipart-derive",
2022-01-03 14:59:01 +00:00
"actix-router",
"actix-test",
2021-04-17 14:30:31 +00: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-02 07:59:44 +00:00
]
[workspace.package]
license = "MIT OR Apache-2.0"
edition = "2021"
2024-02-13 01:24:34 +00:00
rust-version = "1.72"
2021-09-08 16:42:14 +00: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 16:10:03 +00:00
[profile.release]
lto = true
opt-level = 3
2018-02-15 21:59:25 +00:00
codegen-units = 1
2019-04-01 17:26:09 +00:00
2019-12-15 07:28:54 +00:00
[patch.crates-io]
actix-files = { path = "actix-files" }
2020-02-18 18:28:45 +00:00
actix-http = { path = "actix-http" }
2020-12-02 17:23:30 +00:00
actix-http-test = { path = "actix-http-test" }
actix-multipart = { path = "actix-multipart" }
actix-multipart-derive = { path = "actix-multipart-derive" }
2021-08-06 21:42:31 +00:00
actix-router = { path = "actix-router" }
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 07:28:54 +00:00
actix-web-codegen = { path = "actix-web-codegen" }
2020-01-10 05:36:59 +00:00
awc = { path = "awc" }
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" }