Skip to content

Commit c1f0248

Browse files
authored
Merge pull request #302 from serde-rs/combine
Combine serde_json and tests into one crate
2 parents d37fc6c + e11f3d1 commit c1f0248

37 files changed

+35
-71
lines changed

Cargo.toml

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
1-
[workspace]
2-
members = [
3-
"json",
4-
"json_tests",
5-
]
1+
[package]
2+
name = "serde_json"
3+
version = "0.9.10"
4+
authors = ["Erick Tryzelaar <[email protected]>"]
5+
license = "MIT/Apache-2.0"
6+
description = "A JSON serialization file format"
7+
repository = "https://github.com/serde-rs/json"
8+
documentation = "http://docs.serde.rs/serde_json/"
9+
keywords = ["json", "serde", "serialization"]
10+
categories = ["encoding"]
11+
readme = "../README.md"
12+
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
13+
publish = false # this branch contains breaking changes
14+
15+
[badges]
16+
travis-ci = { repository = "serde-rs/json" }
17+
18+
[features]
19+
preserve_order = ["linked-hash-map"]
20+
21+
[dependencies]
22+
serde = { git = "https://github.com/serde-rs/serde", branch = "1.0" }
23+
num-traits = "0.1.32"
24+
linked-hash-map = { version = "0.4.1", optional = true }
25+
itoa = "0.3"
26+
dtoa = "0.4"
27+
28+
[dev-dependencies]
29+
compiletest_rs = "0.2"
30+
serde_bytes = { git = "https://github.com/serde-rs/bytes", branch = "1.0" }
31+
serde_derive = { git = "https://github.com/serde-rs/serde", branch = "1.0" }

json/Cargo.toml

Lines changed: 0 additions & 30 deletions
This file was deleted.

json/LICENSE-APACHE

Lines changed: 0 additions & 1 deletion
This file was deleted.

json/LICENSE-MIT

Lines changed: 0 additions & 1 deletion
This file was deleted.

json/README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

json_tests/Cargo.toml

Lines changed: 0 additions & 18 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)