mirror of
https://github.com/Noratrieb/dilaria.git
synced 2026-01-14 17:35:03 +01:00
25 lines
583 B
TOML
25 lines
583 B
TOML
[package]
|
|
name = "dbg-pls"
|
|
version = "0.2.2"
|
|
authors = ["Conrad Ludgate <conradludgate@gmail.com>"]
|
|
edition = "2018"
|
|
description = "Syntax aware pretty-printing debugging"
|
|
license = "MIT"
|
|
repository = "https://github.com/conradludgate/dbg-pls"
|
|
readme = "README.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
syn = { version = "1", features = ["full"] }
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
itoa = "1"
|
|
ryu = "1"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|