mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 14:51:03 +00:00
22 lines
500 B
TOML
22 lines
500 B
TOML
[package]
|
|
name = "yazi-codegen"
|
|
description = "Yazi code generator"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
# External dependencies
|
|
proc-macro2 = "1"
|
|
quote = "1.0.46"
|
|
syn = { version = "2.0.118", features = [ "full" ] }
|