-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (38 loc) · 1.23 KB
/
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
40
41
42
43
44
[package]
name = "py-subwasm-bindings"
description = "Python bindings for subwasm library"
authors=["Polkascan Foundation"]
version = "0.0.3"
repository = "https://github.com/polkascan/py-subwasm-bindings"
homepage = "https://github.com/polkascan/py-subwasm-bindings"
license = "Apache-2.0"
readme = "README.md"
edition = "2018"
[dependencies]
subwasmlib = { git = "https://github.com/chevdor/subwasm"}
wasm-loader = { git = "https://github.com/chevdor/subwasm"}
wasm-testbed = { git = "https://github.com/chevdor/subwasm"}
serde_json = "1.0.61"
[dev-dependencies]
hex-literal = "0.2"
[lib]
name = "subwasm"
crate-type = ["cdylib"]
[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]
[dependencies.pyo3]
version = "0.13.2"
features = ["extension-module"]
[package.metadata.maturin]
maintainer = "Stichting Polkascan (Polkascan Foundation)"
maintainer-email = "legal@polkascan.org"
classifier = [
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]