Skip to content

Commit f7b8d46

Browse files
committed
Make ast hashable, bump to v0.6.1
Signed-off-by: James Goppert <james.goppert@gmail.com>
1 parent 9036d0c commit f7b8d46

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "rumoca_parser"
33
authors = ["James Goppert", "Benjamin Perseghetti"]
44
description = "A Modelica translator with focus on Casadi, Sympy, JAX, and Collimator generation"
5-
version = "0.6.0"
5+
version = "0.6.1"
66
edition = "2021"
77
license = "Apache-2.0"
88

src/s1_parser/ast.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use serde::{Deserialize, Serialize};
22

33
derive_alias! {
4-
#[derive(CommonTraits!)] = #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)];
4+
#[derive(CommonTraits!)] = #[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Hash)];
55
}
66

77
#[derive(CommonTraits!, Default)]

0 commit comments

Comments
 (0)