view inner/Cargo.toml @ 65:f52e84dfb3fa

Fix #9: carry all dependencies automatically.
author Lewin Bormann <lbo@spheniscida.de>
date Fri, 24 Dec 2021 13:37:11 +0100
parents Cargo.toml@9c7a2ca7c2fc
children 3adb990ef496
line wrap: on
line source

[package]
name = "memoize-inner"
version = "0.2.0"
description = "Helper crate for memoize."
authors = ["Lewin Bormann <lewin@lewin-bormann.info>"]
homepage = "https://github.com/dermesser/memoize"
repository = "https://github.com/dermesser/memoize"
documentation = "https://docs.rs/memoize-inner"
edition = "2018"
license = "MIT"

[lib]
proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
lazy_static = "1.4"
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["full"] }

[features]
default = []
full = []