Add for loop
Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
parent
7182024342
commit
42e0056374
16 changed files with 775 additions and 44 deletions
11
Cargo.toml
11
Cargo.toml
|
|
@ -13,20 +13,21 @@ debug = true
|
|||
[dependencies]
|
||||
annotate-snippets = "0.12.13"
|
||||
displaydoc = "0.2.5"
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
serde_json = "1.0.149"
|
||||
serde_json = { version = "1.0.149", optional = true }
|
||||
thiserror = "2.0.18"
|
||||
winnow = { version = "0.7.14", features = ["unstable-recover"] }
|
||||
|
||||
[dev-dependencies]
|
||||
annotate-snippets = { version = "0.12.13", features = ["testing-colors"] }
|
||||
criterion = "0.8.2"
|
||||
insta = { version = "1.46.3", features = ["glob"] }
|
||||
nomo = { path = ".", features = ["serialize"] }
|
||||
insta = { version = "1.46.3", features = ["glob", "serde"] }
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
serde_json = "1.0.149"
|
||||
|
||||
[profile.dev.package]
|
||||
insta.opt-level = 3
|
||||
similar.opt-level = 3
|
||||
|
||||
[features]
|
||||
serialize = []
|
||||
default = ["serde_json"]
|
||||
serde_json = ["dep:serde_json"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue