1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-23 20:51:06 +01:00
actix-net/Cargo.toml

34 lines
744 B
TOML
Raw Normal View History

2018-12-09 18:56:23 +01:00
[workspace]
members = [
2018-12-10 00:19:25 +01:00
"actix-codec",
2019-11-25 16:49:11 +01:00
"actix-macros",
2020-12-31 03:29:27 +01:00
"actix-rt",
2018-12-10 07:14:29 +01:00
"actix-server",
2020-12-31 03:29:27 +01:00
"actix-service",
"actix-tls",
"actix-tracing",
"actix-utils",
2020-12-31 03:29:27 +01:00
"bytestring",
"local-channel",
"local-waker",
2018-12-09 18:56:23 +01:00
]
resolver = "2"
2019-03-07 08:33:35 +01:00
2019-09-25 06:00:54 +02:00
[patch.crates-io]
actix-codec = { path = "actix-codec" }
2019-11-25 16:49:11 +01:00
actix-macros = { path = "actix-macros" }
2020-12-31 03:29:27 +01:00
actix-rt = { path = "actix-rt" }
2019-09-25 06:00:54 +02:00
actix-server = { path = "actix-server" }
actix-service = { path = "actix-service" }
actix-tls = { path = "actix-tls" }
2020-01-15 22:35:07 +01:00
actix-tracing = { path = "actix-tracing" }
actix-utils = { path = "actix-utils" }
2020-12-31 03:29:27 +01:00
bytestring = { path = "bytestring" }
local-channel = { path = "local-channel" }
local-waker = { path = "local-waker" }
[profile.release]
lto = true
opt-level = 3
codegen-units = 1