-
-
Notifications
You must be signed in to change notification settings - Fork 360
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (45 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
50 lines (45 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[workspace]
resolver = "2"
members = [
"actix-codec",
"actix-macros",
"actix-rt",
"actix-server",
"actix-service",
"actix-tls",
"actix-tracing",
"actix-utils",
"bytestring",
"local-channel",
"local-waker",
]
[workspace.package]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-net"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.88"
[patch.crates-io]
actix-codec = { path = "actix-codec" }
actix-macros = { path = "actix-macros" }
actix-rt = { path = "actix-rt" }
actix-server = { path = "actix-server" }
actix-service = { path = "actix-service" }
actix-tls = { path = "actix-tls" }
actix-tracing = { path = "actix-tracing" }
actix-utils = { path = "actix-utils" }
bytestring = { path = "bytestring" }
local-channel = { path = "local-channel" }
local-waker = { path = "local-waker" }
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
[workspace.lints.rust]
rust-2018-idioms = "deny"
nonstandard-style = "deny"
future-incompatible = "deny"
missing-docs = { level = "warn", priority = -1 }
[workspace.lints.clippy]
uninlined-format-args = "warn"
disallowed-names = "warn"