forked from ChainSafe/forest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
28 lines (23 loc) · 982 Bytes
/
config.toml
File metadata and controls
28 lines (23 loc) · 982 Bytes
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
[alias]
# Permits `cargo cli --chain calibnet ...`
cli = "run --bin forest-cli --"
daemon = "run --bin forest --"
forest-tool = "run --bin forest-tool --release --"
[build]
incremental = true
# TODO(aatifsyed): remove - this can be pushed out to readme
# In all cases, pass --cfg=tokio_unstable for tokio console integration
# See (https://github.com/ChainSafe/forest/pull/2245)
# Note that this may be overridden by user configuration at ~/.cargo/config.toml
rustflags = ["--cfg=tokio_unstable"]
[net]
git-fetch-with-cli = true
retry = 5
[registries.crates-io]
protocol = "sparse"
[env]
# Disable exponential formatting in `bigdecimal`
# as a workaround for https://github.com/ChainSafe/forest/issues/4035
RUST_BIGDECIMAL_FMT_EXPONENTIAL_THRESHOLD = { value = "100", force = true } # 0.4.3
RUST_BIGDECIMAL_FMT_EXPONENTIAL_LOWER_THRESHOLD = { value = "100", force = true } # 0.4.7
RUST_BIGDECIMAL_FMT_EXPONENTIAL_UPPER_THRESHOLD = { value = "100", force = true } # 0.4.7