-
-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (49 loc) · 1.62 KB
/
Cargo.toml
File metadata and controls
54 lines (49 loc) · 1.62 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
[workspace]
members = ["crates/syncpack-specifier"]
[package]
name = "syncpack"
version = "14.3.0"
authors = ["Jamie Mason <jamie@foldleft.io>"]
edition = "2021"
homepage = "https://syncpack.dev"
repository = "https://github.com/JamieMason/syncpack/tree/rust/main"
description = "Consistent dependency versions in large JavaScript Monorepos"
license = "MIT"
keywords = ["monorepo", "npm", "pnpm", "semver", "turborepo"]
readme = "./README.md"
include = ["src/**/*.rs"]
[dev-dependencies]
ctor = "0.6.3"
[dependencies]
async-trait = "0.1.89"
clap = { version = "4.6.0", features = ["cargo"] }
color-print = "0.3.7"
colored = "3.1.1"
env_logger = "0.11.10"
globset = "0.4.18"
indicatif = "0.18.4"
itertools = "0.14.0"
log = "0.4.29"
node-semver = "2.2.0"
regex = { version = "1.12.3", default-features = false, features = ["std"] }
reqwest = { version = "0.12", features = [
"json",
"rustls-tls",
], default-features = false }
detect-indent = "0.1.0"
detect-newline-style = "0.1.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149", features = ["preserve_order"] }
serde_yaml = "0.9"
syncpack-specifier = { path = "crates/syncpack-specifier" }
thiserror = "2.0.18"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "sync"] }
[features]
default = []
[profile.release]
codegen-units = 1 # Reduce number of codegen units to increase optimisations
debug = false # Remove debug information
lto = true # Enable Link Time Optimisation
opt-level = "z" # Optimise for size rather than speed
panic = "abort" # Abort on panic rather than unwinding
strip = true # Strip symbols from binary