Skip to content

Commit b874cd8

Browse files
committed
Upgrade to 2024 edition
1 parent 00d3c30 commit b874cd8

File tree

17 files changed

+32
-29
lines changed

17 files changed

+32
-29
lines changed

json_typegen/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ homepage = "https://typegen.vestera.as"
1010
repository = "https://github.com/evestera/json_typegen"
1111
documentation = "https://docs.rs/json_typegen"
1212
readme = "README.md"
13-
edition = "2021"
13+
edition = "2024"
1414

1515
[features]
1616
default = ["remote-samples", "local-samples"]

json_typegen_cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ homepage = "https://typegen.vestera.as"
1010
repository = "https://github.com/evestera/json_typegen"
1111
documentation = "https://docs.rs/json_typegen_cli"
1212
readme = "README.md"
13-
edition = "2021"
13+
edition = "2024"
1414

1515
[dependencies]
1616
clap = "2.33.3"

json_typegen_cli/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use clap::{App, Arg};
22
use json_typegen_shared::internal_util::display_error_with_causes;
3-
use json_typegen_shared::{codegen, codegen_from_macro, parse, Options, OutputMode};
3+
use json_typegen_shared::{Options, OutputMode, codegen, codegen_from_macro, parse};
44
use std::fs::OpenOptions;
55
use std::io::{self, Read, Write};
66

json_typegen_demo/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.7.0"
44
authors = ["Erik Vesteraas <erik@vestera.as>"]
55
license = "MIT/Apache-2.0"
66
publish = false
7-
edition = "2021"
7+
edition = "2024"
88

99
[dependencies]
1010
serde = "1.0"

json_typegen_shared/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ homepage = "https://typegen.vestera.as"
1010
repository = "https://github.com/evestera/json_typegen"
1111
documentation = "https://docs.rs/json_typegen_shared"
1212
readme = "README.md"
13-
edition = "2021"
13+
edition = "2024"
1414
exclude = ["/benches/"]
1515

1616
[features]

json_typegen_shared/benches/bench.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
extern crate json_typegen_shared;
1010
extern crate test;
1111

12-
use json_typegen_shared::{codegen, Options};
12+
use json_typegen_shared::{Options, codegen};
1313
use test::Bencher;
1414

1515
macro_rules! file_bench {

json_typegen_shared/src/generation/json_schema.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use linked_hash_map::LinkedHashMap;
22

3-
use crate::generation::value::{pretty_print_value, Value};
3+
use crate::generation::value::{Value, pretty_print_value};
44
use crate::options::Options;
55
use crate::shape::{self, Shape};
66
use crate::to_singular::to_singular;

json_typegen_shared/src/generation/kotlin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
use linked_hash_map::LinkedHashMap;
22
use std::collections::HashSet;
33

4+
use crate::OutputMode;
45
use crate::options::{ImportStyle, Options, StringTransform};
56
use crate::shape::{self, Shape};
67
use crate::to_singular::to_singular;
78
use crate::util::{kebab_case, lower_camel_case, snake_case, type_case};
8-
use crate::OutputMode;
99

1010
struct Ctxt {
1111
options: Options,

json_typegen_shared/src/generation/shape.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use linked_hash_map::LinkedHashMap;
22

3-
use crate::generation::value::{pretty_print_value, Value};
3+
use crate::generation::value::{Value, pretty_print_value};
44
use crate::options::Options;
55
use crate::shape::{self, Shape};
66
use crate::util::string_hashmap;

json_typegen_shared/src/generation/typescript_type_alias.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use linked_hash_map::LinkedHashMap;
22

33
use crate::generation::typescript::{collapse_option, is_ts_identifier};
44
use crate::options::Options;
5-
use crate::shape::{self, common_shape, Shape};
5+
use crate::shape::{self, Shape, common_shape};
66

77
pub struct Ctxt {
88
options: Options,

json_typegen_shared/src/generation/zod_schema.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use linked_hash_map::LinkedHashMap;
22

33
use crate::generation::typescript::{collapse_option, is_ts_identifier};
44
use crate::options::Options;
5-
use crate::shape::{self, common_shape, Shape};
5+
use crate::shape::{self, Shape, common_shape};
66
use crate::util::lower_camel_case;
77

88
pub struct Ctxt {

json_typegen_shared/src/inference/jsoninfer.rs

+15-12
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
use crate::Options;
12
use crate::hints::{HintType, Hints};
23
use crate::inference::jsoninputerr::JsonInputErr;
34
use crate::inference::jsonlex::{JsonLexer, JsonToken};
4-
use crate::shape::{common_shape, Shape};
5-
use crate::Options;
5+
use crate::shape::{Shape, common_shape};
66
use linked_hash_map::LinkedHashMap;
77
use std::io::Read;
88
use std::iter::Peekable;
@@ -96,16 +96,19 @@ impl<T: Iterator<Item = Result<JsonToken, JsonInputErr>>> Inference<T> {
9696

9797
fn infer_map(&mut self, options: &Options, hints: &Hints) -> Result<Shape, JsonInputErr> {
9898
let shape = self.infer_object(options, hints)?;
99-
if let Shape::Struct { fields } = shape {
100-
let inner = fields
101-
.into_iter()
102-
.map(|(_, value)| value)
103-
.fold(Shape::Bottom, common_shape);
104-
Ok(Shape::MapT {
105-
val_type: Box::new(inner),
106-
})
107-
} else {
108-
panic!("Got non-object from infer_object")
99+
match shape {
100+
Shape::Struct { fields } => {
101+
let inner = fields
102+
.into_iter()
103+
.map(|(_, value)| value)
104+
.fold(Shape::Bottom, common_shape);
105+
Ok(Shape::MapT {
106+
val_type: Box::new(inner),
107+
})
108+
}
109+
_ => {
110+
panic!("Got non-object from infer_object")
111+
}
109112
}
110113
}
111114

json_typegen_shared/src/parse.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
use syn;
66
use syn::parse::{boolean, ident, string};
7-
use synom::{alt, call, named, punct, IResult};
7+
use synom::{IResult, alt, call, named, punct};
88

99
use crate::hints::Hint;
1010
use crate::options::{ImportStyle, InputMode, Options, OutputMode, StringTransform};

json_typegen_shared/src/sql.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ fn shape_for_column(column: &ColumnDef) -> Shape {
9494
#[cfg(test)]
9595
mod tests {
9696
use super::*;
97-
use crate::{codegen_from_shape, Options, OutputMode};
97+
use crate::{Options, OutputMode, codegen_from_shape};
9898

9999
#[test]
100100
fn test_sql_to_shape() {

json_typegen_shared/tests/python_generation.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use json_typegen_shared::{codegen, ImportStyle, Options, OutputMode};
1+
use json_typegen_shared::{ImportStyle, Options, OutputMode, codegen};
22

33
/// Function to test AST equality, not string equality
44
fn code_output_test(name: &str, input: &str, expected: &str) {

json_typegen_shared/tests/with_defaults.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
use testsyn::{parse_str, Item};
1+
use testsyn::{Item, parse_str};
22

3-
use json_typegen_shared::{codegen, ImportStyle, Options};
3+
use json_typegen_shared::{ImportStyle, Options, codegen};
44

55
/// Function to test AST equality, not string equality
66
fn code_output_test(name: &str, input: &str, expected: &str) {

json_typegen_wasm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "json_typegen_wasm"
33
version = "0.7.0"
44
authors = ["Erik Vesteraas <erik@vestera.as>"]
5-
edition = "2021"
5+
edition = "2024"
66
publish = false
77
description = "WASM wrapper for json_typegen. Codegen from JSON samples."
88
homepage = "https://typegen.vestera.as"

0 commit comments

Comments
 (0)