-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
39 lines (34 loc) · 916 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "semolina"
version = "0.1.4"
edition = "2021"
license = "Apache-2.0"
description = "Optimized field arithmetic for Pasta moduli for x86-64 and aarch64"
repository = "https://github.com/supranational/semolina"
readme = "README.md"
include = [
"/src/**",
"/Cargo.toml",
"/build.rs",
"/README.md",
]
links = "semolina"
[features]
# By default, compile with ADX extension if the host supports it.
# Binary can be executed on systems similar to the host.
default = []
# Compile in portable mode, without ISA extensions.
# Binary can be executed on all systems.
portable = []
# Enable ADX even if the host CPU doesn't support it.
# Binary can be executed on Broadwell+ and Ryzen+ systems.
force-adx = []
[dependencies]
[build-dependencies]
cc = "1.0"
[target.'cfg(target_env = "msvc")'.build-dependencies]
glob = "0.3"
[dev-dependencies]
rand = "^0"
rand_chacha = "^0"
which = "=4.3"