forked from mre/hyperjson
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
49 lines (43 loc) · 1.19 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
45
46
47
48
49
[package]
name = "dhall"
version = "0.0.1"
authors = ["Tristan Cacqueray <[email protected]>"]
description = "A Python module for reading Dhall lang"
edition = "2018"
license = "Apache-2.0"
repository = "https://github.com/TristanCacqueray/python-dhall"
homepage = "https://github.com/TristanCacqueray/python-dhall"
readme = "README.md"
keywords = ["dhall", "python"]
[package.metadata.maturin]
classifier = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
]
[dependencies]
serde_json = "1.0.42"
failure = "0.1.6"
serde = "1.0.103"
serde_derive = "1.0.103"
serde_dhall = "0.5.0"
pyo3 = "0.8.3"
[lib]
name = "dhall"
crate-type = ["rlib", "cdylib"]
[features]
# We must make this feature optional to build binaries such as the profiling crate
default = ["pyo3/extension-module"]
# [workspace]
# members = [ "profiling" ]
# [profile.release]
# codegen-units = 1
# debug = false
# incremental = false
# lto = true
# opt-level = 3