-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (52 loc) · 1.72 KB
/
Cargo.toml
File metadata and controls
58 lines (52 loc) · 1.72 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
55
56
57
58
[workspace]
resolver = "2"
members = [
"tools/conformance",
"protokit",
"protokit_build",
"protokit_grpc",
"protokit_desc",
"protokit_textformat",
"protokit_binformat",
"protokit_examples",
"protokit_derive",
]
exclude = ["tools/gendesc", "tools/fuzz"]
[profile.release]
codegen-units = 1
debug = 1
[workspace.dependencies]
anyhow = "1.0.100"
indexmap = "2.12.1"
bumpalo = { version = "3.19.0", default-features = false }
thiserror = "2.0.6"
bytes = "1.11.0"
quote = "1.0.42"
syn = { version = "2.0.111", default-features = false }
proc-macro2 = "1.0.103"
convert_case = "0.10.0"
prettyplease = "0.2.37"
petgraph = "0.8.3"
arcstr = "1.2.0"
tonic = { version = "0.11.0", default-features = false }
futures = "0.3.31"
async-trait = "0.1.89"
nom = "7.1.3"
nom_locate = "4.0.0"
nom-supreme = "0.8.0"
miette = { version = "5.10.0", default-features = false }
lexical-core = "0.8.5"
minimal-lexical = "0.2.1"
logos = { version = "0.13.0", default-features = false }
maplit = "1.0.2"
tracing-subscriber = "0.3.22"
glob = "0.3.3"
binformat = { path = "protokit_binformat", package = "protokit_binformat", version = "0.2.0" }
build = { path = "protokit_build", package = "protokit_build", version = "0.2.0" }
textformat = { path = "protokit_textformat", package = "protokit_textformat", version = "0.2.0" }
desc = { path = "protokit_desc", package = "protokit_desc", version = "0.2.0" }
grpc = { path = "protokit_grpc", package = "protokit_grpc", version = "0.2.0" }
derive = { path = "protokit_derive", package = "protokit_derive", version = "0.2.0" }
protokit = { path = "protokit", version = "0.2.0" }
lex_core = { package = "lexical-core", version = "0.8.5" }
lex_float = { package = "minimal-lexical", version = "0.2.1" }