File tree 3 files changed +27
-3
lines changed
3 files changed +27
-3
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,18 @@ matrix:
13
13
- rust : 1.15.0
14
14
script :
15
15
# preserve_order is not supported on 1.15.0
16
- - cargo build
17
- - cargo build --features arbitrary_precision
16
+ - cargo build --manifest-path tests/crate/Cargo.toml
17
+ - cargo build --manifest-path tests/crate/Cargo.toml --features arbitrary_precision
18
+
19
+ - rust : 1.18.0
20
+ script :
21
+ - cargo build --manifest-path tests/crate/Cargo.toml
22
+ - cargo build --manifest-path tests/crate/Cargo.toml --features preserve_order
23
+ - cargo build --manifest-path tests/crate/Cargo.toml --features arbitrary_precision
18
24
19
25
- rust : stable
20
26
- rust : beta
21
- - rust : 1.18 .0
27
+ - rust : 1.31 .0
22
28
23
29
- rust : nightly
24
30
name : Clippy
Original file line number Diff line number Diff line change
1
+ [package ]
2
+ name = " serde_json_test"
3
+ version = " 0.0.0"
4
+ edition = " 2018"
5
+ publish = false
6
+
7
+ [lib ]
8
+ path = " test.rs"
9
+
10
+ [dependencies ]
11
+ serde_json = { path = " ../.." }
12
+
13
+ [features ]
14
+ arbitrary_precision = [" serde_json/arbitrary_precision" ]
15
+ preserve_order = [" serde_json/preserve_order" ]
16
+ raw_value = [" serde_json/raw_value" ]
17
+ unbounded_depth = [" serde_json/unbounded_depth" ]
Original file line number Diff line number Diff line change
1
+ pub use serde_json:: * ;
You can’t perform that action at this time.
0 commit comments