This repository has been archived by the owner on Sep 14, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathCargo.toml
55 lines (48 loc) · 1.41 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
50
51
52
53
54
[package]
name = "hyperjson"
version = "0.2.4"
authors = ["Matthias Endler <[email protected]>"]
description = "A hyper-fast Python module for reading/writing JSON data"
edition = "2018"
license = "Apache-2.0"
repository = "https://github.com/mre/hyperjson"
homepage = "https://github.com/mre/hyperjson"
readme = "README.md"
keywords = ["fast", "json", "python"]
[package.metadata.maturin]
classifier = [
"Development Status :: 4 - Beta",
"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",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python",
"Programming Language :: Rust",
]
[dependencies]
serde_json = "1.0.42"
failure = "0.1.6"
serde = "1.0.103"
serde_derive = "1.0.103"
pyo3 = "0.8.3"
[lib]
name = "hyperjson"
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