-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathCargo.toml
30 lines (25 loc) · 949 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
[package]
authors.workspace = true
categories.workspace = true
description = "<DESCRIPTION>"
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
name = "pgt_analyse"
repository.workspace = true
version = "0.0.0"
[dependencies]
pgt_console.workspace = true
pgt_diagnostics.workspace = true
pgt_query_ext.workspace = true
rustc-hash = { workspace = true }
biome_deserialize = { workspace = true, optional = true }
biome_deserialize_macros = { workspace = true, optional = true }
enumflags2.workspace = true
pgt_text_size.workspace = true
schemars = { workspace = true, optional = true }
serde = { workspace = true, features = ["derive"], optional = true }
[features]
schema = ["dep:schemars"]
serde = ["dep:serde", "dep:biome_deserialize", "dep:biome_deserialize_macros"]