18 lines
400 B
TOML
18 lines
400 B
TOML
[package]
|
|
name = "quickpeep_seed_parser"
|
|
authors = ["Olivier 'reivilibre'"]
|
|
license = "MIT OR Apache-2.0"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
pest = "2.1.3"
|
|
pest_derive = "2.1.0"
|
|
smartstring = "1.0.0"
|
|
anyhow = "1.0.56"
|
|
|
|
log = "0.4.16"
|
|
tokio = { version = "1.17.0", features = ["full"] }
|