Skip to content

Commit

Permalink
Merge branch 'main' into native-types
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed Nov 20, 2023
2 parents d89d2fb + 59ccf78 commit eeb0570
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## v0.1.2

- Add `From<T> where T: From<BigInt>` instance for `ItfBigInt`

## v0.1.1

- Add support for new `timestamp` field in meta section of ITF traces
Expand Down
14 changes: 11 additions & 3 deletions itf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
[package]
name = "itf"
version = "0.1.0"
edition = "2021"
name = "itf"
version = "0.1.2"
edition = "2021"
license = "Apache-2.0"
readme = "../README.md"
authors = ["Informal Systems <hello@informal.sytems>"]
keywords = ["apalache", "serialization", "trace"]
description = "Library for consuming Apalache ITF traces"
repository = "https://github.com/informalsystems/itf-rs"
documentation = "https://docs.rs/itf"
rust-version = "1.65"

[dependencies]
num-bigint = { version = "0.4", features = ["serde"] }
Expand Down
2 changes: 0 additions & 2 deletions itf/tests/regression.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use std::collections::HashMap;

use serde::Deserialize;

#[test]
Expand Down

0 comments on commit eeb0570

Please sign in to comment.