# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "mersenne_field"
version = "0.1.0"
authors = ["The Matter Labs Team <hello@matterlabs.dev>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mersenne field operations"
homepage = "https://zksync.io/"
readme = "README.md"
keywords = [
    "blockchain",
    "zksync",
]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/matter-labs/zksync-crypto/"

[lib]
name = "mersenne_field"
path = "src/lib.rs"

[dependencies.rand]
version = "0.8"
default-features = false

[dependencies.seq-macro]
version = "0.3"

[dependencies.serde]
version = "1"
features = [
    "derive",
    "alloc",
]
default-features = false

[features]
default = []
modular_ext4_ops = ["modular_ops"]
modular_ops = ["use_division"]
use_division = []