-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 697 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 697 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
[package]
name = "json_partial"
version = "0.2.0"
edition = "2021"
description = "Parse Imperfect Json given by LLMs"
authors = ["Abhishek Tripathi <abhishek.tripathi456@gmail.com>"]
repository = "https://github.com/TwistingTwists/json_partial"
license = "MIT OR Apache-2.0"
keywords = ["serde", "llm", "json"]
homepage = "https://crates.io/crates/json_partial"
readme = "README.md"
documentation = "https://docs.rs/json_partial"
[dependencies]
anyhow = "1.0.95"
log = "0.4.20"
regex = "1.11.1"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
[dev-dependencies]
test-log = "0.2.16"
[profile.dev]
opt-level = 0
[profile.release]
lto = "fat"
opt-level = "s"