-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 920 Bytes
/
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
[package]
name = "weaveconfig"
version = "0.6.0"
edition = "2021"
description = "A unified configuration tool for monorepos"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/JeremyMoeglich/Weaveconfig"
[dependencies]
anyhow = "1.0.89"
biome_formatter = "0.5.7"
biome_js_formatter = "0.5.7"
biome_js_parser = "0.5.7"
biome_js_syntax = "0.5.7"
clap = { version = "4.5.18", features = ["cargo", "derive"] }
fjson = "0.3.1"
futures = "0.3.30"
hashlink = "0.9.1"
jsonschema = { version = "0.26.1", default-features = false }
lazy_static = "1.5.0"
regex = "1.11.0"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
thiserror = "2.0.0"
tokio = { version = "1.40.0", features = ["full"] }
[target.'cfg(target_os = "linux")'.dependencies]
jemallocator = { version = "0.5.4" }
[profile.release]
opt-level = 3
lto = "fat"
[profile.dev]
opt-level = 0
debug = true