-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
23 lines (21 loc) · 913 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "preinterpret"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["David Edey <[email protected]>"]
description = "An intuitive toolkit to simplify code generation development"
repository = "https://github.com/dhedey/preinterpret"
keywords = ["macros", "declarative-macros", "toolkit", "interpreter", "preprocessor"]
# Categories have to come from https://crates.io/category_slugs
# And whilst there's a development-tools::procedural-macro-helpers, there's no declarative macro category.
categories = ["development-tools", "compilers"]
# MSRV 1.56.0 is the start of Edition 2021
# MSRV 1.61.0 is the current MSRV of syn
# If changing this, also update the local-check-msrv.sh script and ci.yml
rust-version = "1.61"
[lib]
proc-macro = true
[dependencies]
proc-macro2 = { version = "1.0" }
syn = { version = "2.0", default-features = false, features = ["parsing"] }