Skip to content

Commit e3ef4b1

Browse files
authored
Merge pull request #689 from Emurgo/evgenii/data_hash_fix
Conway fixes
2 parents 26b9d5c + 85398ed commit e3ef4b1

20 files changed

+998
-513
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cardano-serialization-lib",
3-
"version": "12.0.1",
3+
"version": "12.1.0",
44
"description": "(De)serialization functions for the Cardano blockchain along with related utility functions",
55
"scripts": {
66
"rust:build-nodejs": "(rimraf ./rust/pkg && cd rust; wasm-pack build --target=nodejs; cd ..; npm run js:ts-json-gen; cd rust; wasm-pack pack) && npm run js:flowgen",

rust/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cardano-serialization-lib"
3-
version = "12.0.1"
3+
version = "12.1.0"
44
edition = "2018"
55
authors = ["EMURGO"]
66
license = "MIT"
@@ -13,7 +13,8 @@ exclude = [
1313
]
1414

1515
[features]
16-
default = []
16+
default = ["arbitrary-precision-json"]
17+
arbitrary-precision-json = ["serde_json/arbitrary_precision"]
1718
#TODO: need to review the features and delete legacy ones. List is defined to avoid warnings.
1819
property-test-api = []
1920
generic-serialization = []
@@ -32,7 +33,7 @@ bech32 = "0.7.2"
3233
hex = "0.4.0"
3334
cfg-if = "1"
3435
hashlink = "0.9.1"
35-
serde_json = { version = "1.0.114", features = ["arbitrary_precision"] }
36+
serde_json = { version = "1.0.114"}
3637
num-bigint = "0.4.0"
3738
num-integer = "0.1.45"
3839
# The default can't be compiled to wasm, so it's necessary to use either the 'nightly'

rust/json-gen/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)