2022-02-19 17:30:38 +01:00
|
|
|
[package]
|
|
|
|
name = "sing_parse"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2022-03-27 16:32:14 +02:00
|
|
|
license = "AGPL-3.0-or-later"
|
2022-03-27 16:16:12 +02:00
|
|
|
license_file = "../LICENSE.md"
|
2022-03-27 16:22:30 +02:00
|
|
|
authors = [ "Daniel Mowitz" ]
|
2022-03-27 16:20:19 +02:00
|
|
|
description = "Parsing utilities for sing_rs"
|
2022-02-19 17:30:38 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
lalrpop = "0.19"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
syn = "1"
|
|
|
|
regex = "1"
|
|
|
|
lalrpop-util = "0.19"
|
2022-03-26 23:06:38 +01:00
|
|
|
lalrpop = "0.19"
|
2022-03-27 16:11:08 +02:00
|
|
|
sing_util = { version = "1.0", path = "../sing_util" }
|
2022-03-26 23:06:38 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|