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",
|
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 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
|
|
|
]
|
|
|
|
|
2023-08-26 23:07:11 +00:00
|
|
|
[workspace.package]
|
2024-05-14 05:30:58 +00:00
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-web"
|
2023-08-26 23:07:11 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
edition = "2021"
|
2024-08-18 14:17:03 +00:00
|
|
|
rust-version = "1.75"
|
2023-08-26 23:07:11 +00:00
|
|
|
|
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]
|
2021-04-02 07:26:59 +00:00
|
|
|
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" }
|
2021-04-02 07:26:59 +00:00
|
|
|
actix-multipart = { path = "actix-multipart" }
|
2023-02-26 03:26:06 +00:00
|
|
|
actix-multipart-derive = { path = "actix-multipart-derive" }
|
2021-08-06 21:42:31 +00:00
|
|
|
actix-router = { path = "actix-router" }
|
2021-04-02 07:26:59 +00: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 07:28:54 +00:00
|
|
|
actix-web-codegen = { path = "actix-web-codegen" }
|
2020-01-10 05:36:59 +00:00
|
|
|
awc = { path = "awc" }
|
2020-01-24 23:05:25 +00: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" }
|
2024-07-07 02:54:00 +00:00
|
|
|
|
|
|
|
[workspace.lints.rust]
|
|
|
|
rust_2018_idioms = { level = "deny" }
|
|
|
|
future_incompatible = { level = "deny" }
|
|
|
|
nonstandard_style = { level = "deny" }
|
|
|
|
|
|
|
|
[workspace.lints.clippy]
|
|
|
|
# clone_on_ref_ptr = { level = "deny" }
|