Skip to content

Commit c55738a

Browse files
authored
Merge pull request #698 from Emurgo/evgenii/sets_and_tags
13.1.0
2 parents 5fbfe14 + 6db228f commit c55738a

File tree

10 files changed

+1707
-465
lines changed

10 files changed

+1707
-465
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": "13.0.0",
3+
"version": "13.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cardano-serialization-lib"
3-
version = "13.0.0"
3+
version = "13.1.0"
44
edition = "2018"
55
authors = ["EMURGO"]
66
license = "MIT"

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.

rust/json-gen/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ use cardano_serialization_lib::*;
77
macro_rules! gen_json_schema {
88
($name:ident) => {
99
//let out_dir = std::env::var_os("OUT_DIR").expect("no env");
10+
println!("Generating schema for {}", stringify!($name));
1011
let dest_path = Path::new(&"schemas").join(&format!("{}.json", stringify!($name)));
1112
fs::write(&dest_path, serde_json::to_string_pretty(&schemars::schema_for!($name)).unwrap()).unwrap();
1213
}

0 commit comments

Comments
 (0)