Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

Commit

Permalink
Clean up dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mre committed Sep 21, 2019
1 parent 887af99 commit 37e67d3
Showing 1 changed file with 18 additions and 20 deletions.
38 changes: 18 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,6 @@ homepage = "https://github.com/mre/hyperjson"
readme = "README.md"
keywords = ["fast", "json", "python"]

[dependencies]
serde_json = "1.0.40"
failure = "0.1.5"
serde = "1.0.101"
serde_derive = "1.0.101"

[dependencies.pyo3]
version = "0.8.0"

[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" ]

[package.metadata.maturin]
classifier = [
"Development Status :: 4 - Beta",
Expand All @@ -48,6 +28,24 @@ classifier = [
"Programming Language :: Rust",
]

[dependencies]
serde_json = "1.0.40"
failure = "0.1.5"
serde = "1.0.101"
serde_derive = "1.0.101"
pyo3 = "0.8.0"

[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
Expand Down

0 comments on commit 37e67d3

Please sign in to comment.