Skip to content

Commit 6d0f4ae

Browse files
authored
add workspace-hack crate (#1326)
1 parent a85ef95 commit 6d0f4ae

File tree

46 files changed

+300
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+300
-1
lines changed

.config/hakari.toml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# This file contains settings for `cargo hakari`.
2+
# See https://docs.rs/cargo-hakari/latest/cargo_hakari/config for a full list of options.
3+
4+
hakari-package = "workspace-hack"
5+
6+
# Format version for hakari's output. Version 4 requires cargo-hakari 0.9.22 or above.
7+
dep-format-version = "4"
8+
9+
# Setting workspace.resolver = "2" or higher in the root Cargo.toml is HIGHLY recommended.
10+
# Hakari works much better with the v2 resolver. (The v2 and v3 resolvers are identical from
11+
# hakari's perspective, so you're welcome to set either.)
12+
#
13+
# For more about the new feature resolver, see:
14+
# https://blog.rust-lang.org/2021/03/25/Rust-1.51.0.html#cargos-new-feature-resolver
15+
resolver = "2"
16+
17+
# Add triples corresponding to platforms commonly used by developers here.
18+
# https://doc.rust-lang.org/rustc/platform-support.html
19+
platforms = [
20+
# "x86_64-unknown-linux-gnu",
21+
# "x86_64-apple-darwin",
22+
"aarch64-apple-darwin",
23+
"x86_64-pc-windows-msvc",
24+
]
25+
26+
# Write out exact versions rather than a semver range. (Defaults to false.)
27+
# exact-versions = true

0 commit comments

Comments
 (0)