This repository has been archived on 2024-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
2023-12-23 15:07:17 +00:00
|
|
|
[package]
|
2023-12-26 11:14:08 +00:00
|
|
|
name = "trixy-parser"
|
2023-12-23 15:07:17 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-25 21:23:52 +00:00
|
|
|
clap = { version = "4.4.11", features = ["derive"], optional = true }
|
2023-12-24 10:28:30 +00:00
|
|
|
convert_case = "0.6.0"
|
2023-12-23 15:07:17 +00:00
|
|
|
thiserror = "1.0.50"
|
2023-12-26 11:14:08 +00:00
|
|
|
trixy-types = { path = "../trixy-types" }
|
2023-12-25 21:23:52 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
pretty_assertions = "1.4.0"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
build-binary = ["clap"]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "trixy-parser"
|
|
|
|
required-features = ["build-binary"]
|