-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 733 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "syntaxfmt"
version = "0.3.0"
edition = "2021"
rust-version = "1.70"
license = "MIT OR Apache-2.0"
description = "A derive macro-based library for flexible syntax tree formatting with pretty printing support."
homepage = "https://github.com/jngls/syntaxfmt"
repository = "https://github.com/jngls/syntaxfmt"
documentation = "https://docs.rs/syntaxfmt"
readme = "README.md"
categories = ["development-tools", "text-processing"]
keywords = ["syntax", "formatting", "pretty-print", "ast", "derive"]
[workspace]
members = [
"crates/*"
]
[features]
default = [
"derive",
]
derive = [ "syntaxfmt-macros" ]
[dependencies]
syntaxfmt-macros = { version = "0.3.0", path = "crates/syntaxfmt-macros", optional = true }