Skip to content

Commit

Permalink
Merge pull request #689 from Emurgo/evgenii/data_hash_fix
Browse files Browse the repository at this point in the history
Conway fixes
  • Loading branch information
lisicky authored Sep 10, 2024
2 parents 26b9d5c + 85398ed commit e3ef4b1
Show file tree
Hide file tree
Showing 20 changed files with 998 additions and 513 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cardano-serialization-lib",
"version": "12.0.1",
"version": "12.1.0",
"description": "(De)serialization functions for the Cardano blockchain along with related utility functions",
"scripts": {
"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",
Expand Down
7 changes: 4 additions & 3 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cardano-serialization-lib"
version = "12.0.1"
version = "12.1.0"
edition = "2018"
authors = ["EMURGO"]
license = "MIT"
Expand All @@ -13,7 +13,8 @@ exclude = [
]

[features]
default = []
default = ["arbitrary-precision-json"]
arbitrary-precision-json = ["serde_json/arbitrary_precision"]
#TODO: need to review the features and delete legacy ones. List is defined to avoid warnings.
property-test-api = []
generic-serialization = []
Expand All @@ -32,7 +33,7 @@ bech32 = "0.7.2"
hex = "0.4.0"
cfg-if = "1"
hashlink = "0.9.1"
serde_json = { version = "1.0.114", features = ["arbitrary_precision"] }
serde_json = { version = "1.0.114"}
num-bigint = "0.4.0"
num-integer = "0.1.45"
# The default can't be compiled to wasm, so it's necessary to use either the 'nightly'
Expand Down
2 changes: 1 addition & 1 deletion rust/json-gen/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e3ef4b1

Please sign in to comment.