-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
131 lines (121 loc) · 5.28 KB
/
Cargo.toml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[workspace]
resolver = "2"
members = [
"treblle-core",
"treblle-traefik-wasm",
"treblle-actix",
"treblle-axum",
"treblle-rocket",
"tests/*",
]
default-members = [
"treblle-core",
"treblle-actix",
"treblle-axum",
"treblle-rocket",
"tests/*",
]
exclude = ["tests/k6-scripts", "tests/scripts", "tests/config"]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Treblle <[email protected]>"]
license = "MIT"
repository = "https://github.com/Treblle/treblle-rust"
homepage = "https://treblle.com/"
rust-version = "1.82.0"
categories = ["api", "wasm", "asynchronous"]
keywords = ["middleware", "monitoring", "tracing", "api", "observability"]
[workspace.dependencies]
treblle-core = { path = "treblle-core", default-features = false }
chrono = { version = "0.4.38", default-features = false, features = [
"clock",
] }
http = "1.1.0"
local-ip-address = "0.6.3"
os_info = "3.7"
serde = { version = "1.0.213", default-features = false, features = [
"derive",
] }
serde_json = { version = "1.0.132", default-features = false, features = [
"std",
] }
time = { version = "0.3.36", features = ["local-offset"] }
tokio = { version = "1.41", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[workspace.lints.rust]
absolute_paths_not_starting_with_crate = "warn"
non_ascii_idents = "warn"
unit-bindings = "warn"
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(coverage)',
'cfg(coverage_nightly)',
] }
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
empty_docs = { level = "allow", priority = 1 }
# restriction
dbg_macro = "warn"
todo = "warn"
unimplemented = "warn"
print_stdout = "warn" # Must be opt-in
print_stderr = "warn" # Must be opt-in
allow_attributes = "warn"
# I like the explicitness of this rule as it removes confusion around `clone`.
# This increases readability, avoids `clone` mindlessly and heap allocating by accident.
clone_on_ref_ptr = "warn"
# These two are mutually exclusive, I like `mod.rs` files for better fuzzy searches on module entries.
self_named_module_files = "warn" # "-Wclippy::mod_module_files"
empty_drop = "warn"
empty_structs_with_brackets = "warn"
exit = "warn"
filetype_is_file = "warn"
get_unwrap = "warn"
impl_trait_in_params = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
rest_pat_in_fully_bound_structs = "warn"
unnecessary_safety_comment = "warn"
undocumented_unsafe_blocks = "warn"
infinite_loop = "warn"
# I want to write the best Rust code so pedantic is enabled.
# We should only disable rules globally if they are either false positives, chaotic, or does not make sense.
pedantic = { level = "warn", priority = -1 }
# Allowed rules
# pedantic
# This rule is too pedantic, I don't want to force this because naming things are hard.
module_name_repetitions = "allow"
# All triggers are mostly ignored in our codebase, so this is ignored globally.
struct_excessive_bools = "allow"
too_many_lines = "allow"
# `#[must_use]` is creating too much noise for this codebase, it does not add much value
# except nagging the programmer to add a `#[must_use]` after clippy has been run.
# Having `#[must_use]` everywhere also hinders readability.
must_use_candidate = "allow"
# used_underscore_binding= "allow"
doc_markdown = "allow"
# nursery
# `const` functions do not make sense for our project because this is not a `const` library.
# This rule also confuses newcomers and forces them to add `const` blindlessly without any reason.
missing_const_for_fn = "allow"
# cargo
cargo = { level = "warn", priority = -1 }
multiple_crate_versions = "allow"
[profile.dev]
# Disabling debug info speeds up local and CI builds,
# and we don't rely on it for debugging that much.
debug = false
[profile.release]
lto = true
opt-level = 'z' # Optimize for binary size
codegen-units = 1
panic = 'abort' # Let it crash and force ourselves to write safe Rust
strip = true
debug = false
# Profile used for release mode, but with debugging information for profiling
# and debugging. Use `cargo build --profile=release-with-debug` to build with this profile.
[profile.release-with-debug]
inherits = "release"
strip = false # Keep debug information in binary
debug = true # Include maximum amount of debug information