mirror of
https://github.com/Sunscreen-tech/Sunscreen.git
synced 2026-01-14 08:07:56 -05:00
26 lines
771 B
TOML
26 lines
771 B
TOML
[package]
|
|
name = "sunscreen_compiler_common"
|
|
version = "0.8.0"
|
|
edition = "2021"
|
|
|
|
authors = ["Sunscreen"]
|
|
rust-version = "1.56.0"
|
|
license = "AGPL-3.0-only"
|
|
description = "This crate contains common functionality for Sunscreen's FHE and ZKP compilers."
|
|
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"
|
|
|
|
[dependencies]
|
|
petgraph = { workspace = true }
|
|
proc-macro2 = { workspace = true }
|
|
quote = { workspace = true }
|
|
semver = { workspace = true }
|
|
serde = { workspace = true }
|
|
syn = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
static_assertions = { workspace = true }
|