mirror of
https://git.proxmox.com/git/proxmox
synced 2026-03-24 09:30:08 +00:00
to autogenerate crate (build)-dependencies, and correct Provides statements. Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
27 lines
545 B
TOML
27 lines
545 B
TOML
[package]
|
|
name = "proxmox-api-macro"
|
|
edition = "2018"
|
|
version = "0.1.1"
|
|
authors = [ "Wolfgang Bumiller <w.bumiller@proxmox.com>" ]
|
|
license = "AGPL-3"
|
|
description = "Proxmox API macro"
|
|
|
|
exclude = [ "debian" ]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
failure = "0.1"
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "1.0", features = [ "full" ] }
|
|
|
|
[dev-dependencies]
|
|
futures = "0.3"
|
|
proxmox = { path = "../proxmox" }
|
|
proxmox-api = { path = "../proxmox-api", features = [ "test-harness" ] }
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|