forked from ChihChengLiang/milagro_bls_binding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (25 loc) · 854 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
[package]
name = "milagro-bls-binding"
version = "1.9.0"
edition = "2018"
authors = ["[email protected]"]
readme = "README.md"
[package.metadata.maturin]
classifier = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
]
maintainer = "Chih-Cheng Liang"
maintainer-email = "[email protected]"
requires-python = ">=3.7"
project-url = { Source = "https://github.com/ChihChengLiang/milagro_bls_binding/" }
[lib]
name = "milagro_bls_binding"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.16.4", features = ["extension-module", "abi3-py37"] }
milagro_bls = {git = "https://github.com/sigp/milagro_bls", tag= "v1.5.0" }
rand = { version = "0.8.5", default-features = false }