Files
Sunscreen/sunscreen_compiler_macros/Cargo.toml
2023-05-24 15:28:52 -07:00

31 lines
867 B
TOML

[package]
name = "sunscreen_compiler_macros"
version = "0.7.0"
edition = "2021"
authors = ["Sunscreen LLC"]
rust-version = "1.56.0"
license = "AGPL-3.0-only"
description = "This crate contains macros that support the Sunscreen compiler.."
homepage = "https://sunscreen.tech"
repository = "https://github.com/Sunscreen-tech/Sunscreen"
documentation = "https://docs.sunscreen.tech"
keywords = ["FHE", "BFV", "lattice", "cryptography"]
categories = ["cryptography"]
readme = "crates-io.md"
[lib]
proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
proc-macro2 = "1.0.32"
quote = "1.0.10"
syn = { version = "2.0.16", features = ["derive", "full", "fold"] }
sunscreen_compiler_common ={ path = "../sunscreen_compiler_common" }
thiserror = "1.0.37"
[dev-dependencies]
serde_json = "1.0.74"