-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathCargo.toml
62 lines (54 loc) · 2.25 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
authors.workspace = true
categories.workspace = true
description = "<DESCRIPTION>"
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
name = "pgt_cli"
repository.workspace = true
version = "0.0.0"
[dependencies]
anyhow = { workspace = true }
biome_deserialize = { workspace = true }
biome_deserialize_macros = { workspace = true }
bpaf = { workspace = true, features = ["bright-color"] }
crossbeam = { workspace = true }
dashmap = "5.5.3"
hdrhistogram = { version = "7.5.4", default-features = false }
path-absolutize = { version = "3.1.1", optional = false, features = ["use_unix_paths_on_wasm"] }
pgt_analyse = { workspace = true }
pgt_configuration = { workspace = true }
pgt_console = { workspace = true }
pgt_diagnostics = { workspace = true }
pgt_flags = { workspace = true }
pgt_fs = { workspace = true }
pgt_lsp = { workspace = true }
pgt_text_edit = { workspace = true }
pgt_workspace = { workspace = true, features = ["db-connection"] }
quick-junit = "0.5.0"
rayon = { workspace = true }
rustc-hash = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["io-std", "io-util", "net", "time", "rt", "sync", "rt-multi-thread", "macros"] }
tracing = { workspace = true }
tracing-appender = "0.2.3"
tracing-subscriber = { workspace = true, features = ["env-filter", "json"] }
tracing-tree = "0.4.0"
[target.'cfg(unix)'.dependencies]
libc = "0.2.161"
tokio = { workspace = true, features = ["process"] }
[target.'cfg(windows)'.dependencies]
mimalloc = "0.1.43"
[target.'cfg(all(target_family="unix", not(all(target_arch = "aarch64", target_env = "musl"))))'.dependencies]
tikv-jemallocator = "0.6.0"
[dev-dependencies]
assert_cmd = "2.0.16"
predicates = "3.1.3"
[lib]
doctest = false
[[bin]]
name = "postgrestools"
path = "src/main.rs"