File tree Expand file tree Collapse file tree 4 files changed +17
-5
lines changed Expand file tree Collapse file tree 4 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,10 @@ root = true
5
5
6
6
[* ]
7
7
indent_style = space
8
- indent_size = 4
9
- end_of_line = lf
8
+ indent_size = 2
10
9
charset = utf-8
11
10
trim_trailing_whitespace = true
12
11
insert_final_newline = true
12
+
13
+ [* .rs ]
14
+ indent_size = 4
Original file line number Diff line number Diff line change 17
17
uses : actions-rs/toolchain@v1
18
18
with :
19
19
profile : minimal
20
- toolchain : 1.40 .0
20
+ toolchain : 1.59 .0
21
21
target : wasm32-unknown-unknown
22
22
override : true
23
23
50
50
uses : actions-rs/toolchain@v1
51
51
with :
52
52
profile : minimal
53
- toolchain : 1.49 .0
53
+ toolchain : 1.59 .0
54
54
override : true
55
55
components : rustfmt, clippy
56
56
Original file line number Diff line number Diff line change @@ -5,14 +5,23 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) and this
6
6
project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
7
7
8
+ ## Unreleased
9
+
10
+ ### Changed
11
+
12
+ - Bump min supported Rust version to 1.59.0 (same as cosmwasm-std)
13
+ - Upgrade codebase to Rust edition 2021
14
+
8
15
## [ 0.4.1] - 2022-05-05
9
16
10
17
### Changed
18
+
11
19
- Properly serialize ` u128 ` /` i128 ` types when embedded in structs
12
20
13
21
## [ 0.4.0] - 2022-03-29
14
22
15
23
### Added
24
+
16
25
- Add support for ` #[serde(untagged)] ` enums representation
17
26
18
27
## [ 0.3.1] - 2021-01-19
@@ -26,6 +35,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
26
35
### Changed
27
36
28
37
Maintenance release:
38
+
29
39
- Update clippy version in CI to 1.49.0.
30
40
- Fix ` clippy::manual-non-exhaustive ` warnings.
31
41
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ authors = [
9
9
categories = [" wasm" ]
10
10
description = " serde_json for Wasm programs (small, deterministic, no floats)"
11
11
documentation = " https://docs.rs/serde-json-wasm"
12
- edition = " 2018 "
12
+ edition = " 2021 "
13
13
keywords = [" serde" , " json" , " wasm" ]
14
14
license = " MIT OR Apache-2.0"
15
15
name = " serde-json-wasm"
You can’t perform that action at this time.
0 commit comments