-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (41 loc) · 1.29 KB
/
Copy pathCargo.toml
File metadata and controls
46 lines (41 loc) · 1.29 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
[workspace]
members = [
"omq-bench",
"omq-proto",
"omq-tokio",
"omq-libzmq",
"yring",
]
default-members = ["omq-proto", "omq-tokio"]
# Bindings live in their own subtree. Each is its own build root - Python's
# maturin / Ruby's rake-compiler / etc. drive them - and they would otherwise
# pull foreign-language toolchains into `cargo build --workspace`.
exclude = ["bindings"]
resolver = "2"
[workspace.package]
edition = "2024"
rust-version = "1.93"
license = "ISC"
authors = ["Patrik Wenger <paddor@gmail.com>"]
repository = "https://github.com/paddor/omq.rs"
description = "Pure Rust ØMQ/ZeroMQ: wire-compatible, feature-complete, high-performance."
[workspace.lints.rust]
missing_debug_implementations = "deny"
unsafe_op_in_unsafe_fn = "deny"
rust_2018_idioms = { level = "warn", priority = -1 }
unreachable_pub = "warn"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] }
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
cast_precision_loss = "allow"
[profile.bench]
debug = "line-tables-only"
[profile.release]
debug = "line-tables-only"