forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hakari.toml
43 lines (35 loc) · 1.6 KB
/
hakari.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
# This file contains settings for `cargo hakari`.
# See https://docs.rs/cargo-hakari/latest/cargo_hakari/config for a full list of options.
hakari-package = "workspace-hack"
# Format for `workspace-hack = ...` lines in other Cargo.tomls.
dep-format-version = "4"
# Setting workspace.resolver = "2" in the root Cargo.toml is HIGHLY recommended.
# Hakari works much better with the new feature resolver.
# For more about the new feature resolver, see:
# https://blog.rust-lang.org/2021/03/25/Rust-1.51.0.html#cargos-new-feature-resolver
resolver = "2"
# Add triples corresponding to platforms commonly used by developers here.
# https://doc.rust-lang.org/rustc/platform-support.html
platforms = [
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
# "x86_64-apple-darwin",
]
# Write out exact versions rather than a semver range. (Defaults to false.)
# exact-versions = true
output-single-feature = true
[traversal-excludes]
workspace-members = [ "sui-move" ]
third-party = [
## Exclude the 'move-unit-test' crate in order to ensure that the 'testing'
# feature isn't enabled in the workspace-hack
{ name = "move-unit-test", git = "https://github.com/move-language/move", rev = "60cec12b1ed9382836aa4c141e445656d39375e1" },
{ name = "move-cli", git = "https://github.com/move-language/move", rev = "60cec12b1ed9382836aa4c141e445656d39375e1" },
{ name = "move-transactional-test-runner", git = "https://github.com/move-language/move", rev = "60cec12b1ed9382836aa4c141e445656d39375e1" },
{ name = "object_store" },
]
[final-excludes]
workspace-members = [
"x",
]