forked from agents-sh/tryparse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (37 loc) · 837 Bytes
/
Cargo.toml
File metadata and controls
43 lines (37 loc) · 837 Bytes
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
[workspace]
members = [
"tryparse",
"tryparse-derive",
]
resolver = "2"
[workspace.package]
version = "0.4.4"
edition = "2021"
authors = ["TryParse Contributors"]
license = "Apache-2.0"
repository = "https://github.com/microagents/tryparse"
readme = "README.md"
keywords = ["json", "parser", "llm", "serde", "lenient"]
rust-version = "1.70"
[workspace.dependencies]
# Core dependencies
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
regex = "1.10"
saphyr = "0.0.6"
once_cell = "1.19"
unicode-normalization = "0.1"
# Proc-macro dependencies
syn = { version = "2.0", features = ["full"] }
quote = "1.0"
proc-macro2 = "1.0"
# Dev dependencies
pretty_assertions = "1.4"
criterion = "0.5"
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
[profile.bench]
inherits = "release"