1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-18 23:21:50 +01:00
actix-net/Cargo.toml

45 lines
991 B
TOML
Raw Normal View History

2018-12-09 09:56:23 -08:00
[workspace]
2024-05-02 01:28:38 +01:00
resolver = "2"
2018-12-09 09:56:23 -08:00
members = [
2018-12-09 15:19:25 -08:00
"actix-codec",
2019-11-25 21:49:11 +06:00
"actix-macros",
2020-12-31 02:29:27 +00:00
"actix-rt",
2018-12-09 22:14:29 -08:00
"actix-server",
2020-12-31 02:29:27 +00:00
"actix-service",
"actix-tls",
"actix-tracing",
"actix-utils",
2020-12-31 02:29:27 +00:00
"bytestring",
"local-channel",
"local-waker",
2018-12-09 09:56:23 -08:00
]
2019-03-06 23:33:35 -08:00
2023-07-17 03:05:39 +01:00
[workspace.package]
2023-08-26 14:59:51 +01:00
license = "MIT OR Apache-2.0"
2023-07-17 03:05:39 +01:00
edition = "2021"
rust-version = "1.71.1"
2023-07-17 03:05:39 +01:00
2019-09-25 10:00:54 +06:00
[patch.crates-io]
actix-codec = { path = "actix-codec" }
2019-11-25 21:49:11 +06:00
actix-macros = { path = "actix-macros" }
2020-12-31 02:29:27 +00:00
actix-rt = { path = "actix-rt" }
2019-09-25 10:00:54 +06:00
actix-server = { path = "actix-server" }
actix-service = { path = "actix-service" }
actix-tls = { path = "actix-tls" }
2020-01-15 13:35:07 -08:00
actix-tracing = { path = "actix-tracing" }
actix-utils = { path = "actix-utils" }
2020-12-31 02:29:27 +00:00
bytestring = { path = "bytestring" }
local-channel = { path = "local-channel" }
local-waker = { path = "local-waker" }
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
2024-12-29 14:27:56 +00:00
[workspace.lints.rust]
rust_2018_idioms = "deny"
nonstandard-style = "deny"
future_incompatible = "deny"
missing_docs = { level = "warn", priority = -1 }