-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (21 loc) · 870 Bytes
/
Cargo.toml
File metadata and controls
22 lines (21 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
authors = ["ityuany <519495771@qq.com>"]
categories = ["parser-implementations", "development-tools"]
description = "A parser for package.json"
edition = "2024"
include = ["src/**/*.rs", "Cargo.toml", "LICENSE", "README.md"]
keywords = ["package", "json", "parser"]
license = "MIT"
name = "package_json_parser"
repository = "https://github.com/ityuany/package_json_parser"
version = "0.0.16"
[dependencies]
derive_more = { version = "2.0.1", features = ["deref", "deref_mut"] }
jsonc-parser = { version = "0.26.2" }
lazy-regex = { version = "3.4.1" }
miette = { version = "7.6.0", features = ["fancy"] }
rustc-hash = { version = "2.1.1" }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = { version = "1.0.105" }
thiserror = { version = "2.0.12" }
validator = { version = "0.20.0" }