forked from ijl/orjson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
68 lines (64 loc) · 2.3 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "orjson"
version = "2.1.4"
authors = ["ijl <[email protected]>"]
description = "Fast, correct Python JSON library supporting dataclasses and datetimes"
edition = "2018"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/ijl/orjson"
homepage = "https://github.com/ijl/orjson"
readme = "README.md"
keywords = ["fast", "json", "dataclass", "dataclasses", "datetime", "rfc", "8259", "3339"]
include = [
"Cargo.toml",
"CHANGELOG.md",
"data/*",
"LICENSE-APACHE",
"LICENSE-MIT",
"pyproject.toml",
"README.md",
"rust-toolchain",
"src/*",
"test/*.py",
"test/requirements.txt",
]
[lib]
name = "orjson"
crate-type = ["cdylib"]
[package.metadata.maturin]
requires-python = ">=3.6"
classifier = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python",
"Programming Language :: Rust",
"Typing :: Typed",
]
[dependencies]
associative-cache = { version = "1" }
encoding_rs = { version = "0.8", default_features = false, features = ["simd-accel"] }
itoa = { version = "0.4", default_features = false }
lazy_static = { version = "1.4", default_features = false }
parking_lot = {version = "0.10", features = ["nightly"]}
pyo3 = { git = "https://github.com/PyO3/pyo3.git", rev = "18440d7af527aa7b26bc4e14477327367246d3f2", default_features = false, features = ["extension-module"]}
rand = { version = "0.7", default_features = false, features = ["getrandom", "std"] }
serde = { version = "1", default_features = false }
serde_json = { git = "https://github.com/ijl/json.git", rev = "83efe507487afe2332c5d6f83d28056159a58e5d", default_features = false, features = ["perfect_float"] }
smallvec = { version = "1", default_features = false, features = ["union", "specialization"] }
wyhash = { version = "0.3" }
[profile.release]
codegen-units = 1
debug = false
incremental = false
lto = true
opt-level = 3
panic = "abort"