Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump ts-rs from 6.2.1 to 7.0.0 #170

Merged
merged 2 commits into from
Aug 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/parol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ syntree = { workspace = true }
syntree_layout = { workspace = true }
thiserror = { workspace = true }
ume = "0.1"
ts-rs = "6.2.1"
ts-rs = "7.0.0"

[features]
default = ["build"]
Expand Down
2 changes: 1 addition & 1 deletion crates/parol/bindings/MetaSymbolKind.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { SymbolId } from "./SymbolId";

export type MetaSymbolKind = "Undefined" | "Token" | { NonTerminal: SymbolId };
export type MetaSymbolKind = "Undefined" | "Token" | { "NonTerminal": SymbolId };
2 changes: 1 addition & 1 deletion crates/parol/bindings/SymbolKind.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
import type { Instance } from "./Instance";
import type { Type } from "./Type";

export type SymbolKind = { Type: Type } | { Instance: Instance };
export type SymbolKind = { "Type": Type } | { "Instance": Instance };
2 changes: 1 addition & 1 deletion crates/parol/bindings/TypeEntrails.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ import type { MetaSymbolKind } from "./MetaSymbolKind";
import type { SymbolId } from "./SymbolId";
import type { UserDefinedTypeName } from "./UserDefinedTypeName";

export type TypeEntrails = "None" | "Token" | { Box: SymbolId } | "Struct" | "Enum" | { EnumVariant: SymbolId } | { Vec: SymbolId } | "Trait" | { Function: Function } | { Option: SymbolId } | { Clipped: MetaSymbolKind } | { UserDefinedType: [MetaSymbolKind, UserDefinedTypeName] };
export type TypeEntrails = "None" | "Token" | { "Box": SymbolId } | "Struct" | "Enum" | { "EnumVariant": SymbolId } | { "Vec": SymbolId } | "Trait" | { "Function": Function } | { "Option": SymbolId } | { "Clipped": MetaSymbolKind } | { "UserDefinedType": [MetaSymbolKind, UserDefinedTypeName] };