forked from TristanCacqueray/python-dhall
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
38 lines (33 loc) · 963 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
[package]
name = "dhall"
version = "0.1.17"
authors = ["Simon Zeng <[email protected]>", "Tristan Cacqueray <[email protected]>", "Matthias Endler <[email protected]>"]
description = "Python bindings for dhall, a functional configuration language"
edition = "2018"
license = "Apache-2.0"
repository = "https://github.com/s-zeng/dhall-python"
homepage = "https://github.com/s-zeng/dhall-python"
readme = "README.md"
keywords = ["dhall", "python"]
[dependencies]
serde_json = "1"
serde = "1"
serde_derive = "1"
serde_dhall = "0.12"
pyo3 = "0.19"
thiserror = "1"
openssl = {version = "0.10", features = ["vendored"]}
[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