-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (59 loc) · 1.91 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (59 loc) · 1.91 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
# Copyright 2026 FastLabs Developers
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[workspace]
members = ["benchmarks", "examples", "hashcrew", "tests-integration", "xtask"]
resolver = "3"
[workspace.package]
edition = "2024"
license = "Apache-2.0"
readme = "README.md"
rust-version = "1.85"
[workspace.dependencies]
# Workspace dependencies
hashcrew = { path = "hashcrew" }
# Crates.io dependencies
cargo_metadata = { version = "0.19.2" }
cityhash-rs = { version = "1.0.1" }
cityhasher = { version = "0.1.0" }
clap = { version = "4.6.6", features = ["derive"] }
divan = { version = "0.1.21" }
fnv = { version = "1.0.7" }
md-5 = { version = "0.11.0", default-features = false }
murmur3 = { version = "0.5.2" }
twox-hash = { version = "2.1.4", default-features = false, features = [
"std",
"xxhash3_128",
"xxhash3_64",
"xxhash32",
"xxhash64",
] }
which = { version = "8.0.6" }
xxhash-rust = { version = "0.8.18", features = ["xxh3", "xxh32", "xxh64"] }
[workspace.lints.rust]
missing_debug_implementations = "deny"
rust_2018_idioms = { level = "deny", priority = -1 }
unknown_lints = "deny"
unsafe_op_in_unsafe_fn = "forbid"
[workspace.lints.clippy]
dbg_macro = "deny"
missing_safety_doc = "deny"
undocumented_unsafe_blocks = "deny"
[workspace.metadata.release]
pre-release-commit-message = "chore: release v{{version}}"
shared-version = true
sign-tag = true
tag-name = "v{{version}}"
[profile.release]
codegen-units = 1
lto = "thin"