mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 07:06:47 +00:00
24 lines
670 B
TOML
24 lines
670 B
TOML
[package]
|
|
name = "intertrait-macros"
|
|
description = "Macros for intertrait crate, which allows for direct casting between trait objects"
|
|
version = "0.2.2"
|
|
authors = ["CodeChain Team <hi@codechain.io>"]
|
|
license = "GPLv2(for code modified by dragonos) MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
repository = "https://github.com/CodeChain-io/intertrait"
|
|
include = ["src/**/*", "Cargo.toml", "LICENSE-*"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
hashbrown = "0.13.2"
|
|
proc-macro2 = "1.0"
|
|
syn = { version = "1.0", features = ["full"] }
|
|
quote = "1.0"
|
|
uuid = { version = "0.8", features = ["v4"] }
|
|
|
|
[dev-dependencies]
|
|
intertrait = { version = "=0.2.2", path = ".." }
|
|
linkme = "=0.3.27"
|