-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
98 lines (90 loc) · 2.68 KB
/
Copy pathCargo.toml
File metadata and controls
98 lines (90 loc) · 2.68 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
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
[workspace]
members = [
"crates/lib",
"crates/bin",
"crates/command",
"crates/app",
"crates/tui",
"crates/wasm-types",
# "crates/wasm-blueprints/rust",
]
default-members = [
"crates/lib",
"crates/bin",
"crates/command",
"crates/app",
"crates/tui",
"crates/wasm-types",
# "crates/wasm-blueprints/rust",
]
resolver = "3"
[workspace.package]
version = "0.0.31"
edition = "2024"
authors = ["Yann Prono <yann.prono@maif.fr>"]
readme = "README.md"
homepage = "https://github.com/MAIF/yozefu"
repository = "https://github.com/MAIF/yozefu"
documentation = "https://docs.rs/yozefu"
description = "Yozefu is a CLI tool for Apache kafka. It allows you to navigate topics and search Kafka records."
license = "Apache-2.0"
rust-version = "1.85.0"
[workspace.dependencies]
lib = { package = "yozefu-lib", path = "crates/lib", version = "0.0.31" }
app = { package = "yozefu-app", path = "crates/app", version = "0.0.31" }
command = { package = "yozefu-command", path = "crates/command", version = "0.0.31" }
tui = { package = "yozefu-tui", path = "crates/tui", version = "0.0.31" }
serde_json = { version = "1.0.151", features = ["preserve_order"] }
serde = { version = "1.0.229", features = ["derive"] }
strum = {version = "0.28.0" }
tracing = "0.1.44"
tokio = { version = "1.53.1" }
futures = "0.3.33"
schemars = { version = "1.2.2" }
itertools = "0.15.0"
[profile.release]
opt-level = 3
debug = "none"
debug-assertions = false
overflow-checks = true
strip = true
# lto = "fat"
panic = "abort"
incremental = false
[workspace.metadata.release]
shared-version = true
tag-message = "chore: Release version v{{version}}"
pre-release-commit-message = "chore: Release version v{{version}}"
tag-name = "{{version}}"
[workspace.lints.clippy]
pedantic = {level = "warn", priority = 10 }
arithmetic_overflow = "warn"
checked_conversions = "warn"
cast_possible_truncation = "warn"
cast_sign_loss = "warn"
cast_possible_wrap = "warn"
cast_precision_loss = "warn"
integer_division = "warn"
arithmetic_side_effects = "warn"
unchecked_duration_subtraction = "warn"
unwrap_used = "warn"
expect_used = "warn"
panicking_unwrap = "warn"
option_env_unwrap = "warn"
indexing_slicing = "warn"
join_absolute_paths = "warn"
serde_api_misuse = "warn"
match_bool = {level = "allow", priority = 2 }
uninit_vec = "warn"
transmute_int_to_char = "warn"
transmute_int_to_float = "warn"
transmute_ptr_to_ref = "warn"
transmute_undefined_repr = "warn"
missing_errors_doc = {level = "allow", priority = 2 }
deref_nullptr = "deny"
integer_to_ptr_transmutes = "deny"
invalid_value = "deny"
invalid_from_utf8 = "deny"
never_type_fallback_flowing_into_unsafe = "deny"
ptr_to_integer_transmute_in_consts = "deny"
static_mut_refs = "deny"