-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (41 loc) · 1.48 KB
/
Cargo.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
44
[package]
name = "cargo-green"
description = "Cargo plugin and $RUSTC_WRAPPER to sandbox & cache cargo builds and execute jobs remotely"
authors.workspace = true
categories.workspace = true
edition.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
# [profile.release]
# codegen-units = 1
# Try tuning rustc codegen options to optimize for speed (suggest mold?)
# TODO: use the least amount of codegen units for best LTO
# https://doc.rust-lang.org/nightly/rustc/codegen-options/index.html#codegen-units
# https://doc.rust-lang.org/nightly/rustc/codegen-options/index.html#embed-bitcode
# https://doc.rust-lang.org/nightly/rustc/codegen-options/index.html#instrument-coverage
# https://doc.rust-lang.org/nightly/rustc/codegen-options/index.html#link-arg
# https://doc.rust-lang.org/nightly/rustc/codegen-options/index.html#linker
[dependencies]
anyhow.workspace = true
camino.workspace = true
cargo-subcommand-metadata.workspace = true
env_logger.workspace = true
futures.workspace = true
home.workspace = true
log.workspace = true
nutype.workspace = true
pretty_assertions.workspace = true # TODO: drop once !dbg
reqwest.workspace = true
rustc_version.workspace = true
rustflags.workspace = true # TODO: drop once !dbg
serde-jsonlines.workspace = true
serde.workspace = true
serde_json.workspace = true
sha256.workspace = true
szyk.workspace = true
tokio.workspace = true
toml.workspace = true
[dev-dependencies]
assertx.workspace = true