Add missing typedef reply type

Signed-off-by: Lymkwi <lymkwi@vulpinecitrus.info>
This commit is contained in:
Amelia 2023-12-11 16:07:47 +01:00
parent 6d2b3ead16
commit f296697a95
Signed by: limefox
GPG key ID: F86ACA6D693E7BE9
2 changed files with 3 additions and 1 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "estrus" name = "estrus"
version = "0.1.0" version = "0.1.1"
edition = "2021" edition = "2021"
authors = ["Lymkwi"] authors = ["Lymkwi"]
license = "ACSL" license = "ACSL"

View file

@ -57,6 +57,8 @@ pub enum DefinitionType {
Struct, Struct,
#[serde(rename(deserialize = "variable"))] #[serde(rename(deserialize = "variable"))]
Variable, Variable,
#[serde(rename(deserialize = "typedef"))]
Typedef,
} }
impl std::fmt::Display for DefinitionType { impl std::fmt::Display for DefinitionType {