[package] name = "autodiff_injector_core_derive" version = "0.0.1" description = "A library for easily adding automatic differentiation to Rust, even on already written code." edition = "2021" keywords = ["math", "autodiff", "ad"] license = "MIT OR Apache-2.0" repository = "https://github.com/djrakita/autodiff_injector" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] proc-macro = true [dependencies] syn = "1.0.99" quote = "1.0.21" autodiff_injector_core = { path = "../autodiff_injector_core", version = "0.0.1"} # depends on autodiff_injector_core, which will hold all of the public structs, traits, etc.