Skip to content

Commit

Permalink
chore: update dependencies (of which indexmap to new major) (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
RomainMuller authored Jun 28, 2023
1 parent 0377073 commit 9e8b00c
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 57 deletions.
100 changes: 47 additions & 53 deletions Cargo.lock

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

7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "noctilucent"
version = "0.2.0"
edition = "2021"
rust-version = "1.64"
description = "Turn AWS CloudFormation templates into AWS CDK applications"
license = "MIT"

Expand All @@ -27,16 +28,16 @@ crate-type = ["cdylib", "lib"]
anyhow = "^1.0.71"
base64 = "^0.21.2"
clap = { version = "^4.3.8", features = ["cargo"] }
indexmap = { version = "^1.9.3", features = ["serde"] }
nom = "^7.0.0"
indexmap = { version = "^2.0.0", features = ["serde"] }
nom = "^7.1.3"
numberkit = "^0.1.0"
phf = "^0.11.2"
serde = { version = "^1.0.164", features = ["derive"] }
serde-enum-str = "^0.3.2"
serde_with = "^3.0.0"
serde_yaml = "^0.9.22"
topological-sort = "^0.2.2"
voca_rs = "^1.14.0"
voca_rs = "^1.15.2"
wasm-bindgen = "^0.2.87"


Expand Down
1 change: 0 additions & 1 deletion src/synthesizer/golang/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,6 @@ impl Inspectable for ConditionIr {
ConditionIr::Condition(_) | ConditionIr::Str(_) | ConditionIr::Ref(_) => false,
ConditionIr::Split(_, cond) => cond.uses_map_table(name),
ConditionIr::Select(_, cond) => cond.uses_map_table(name),
ConditionIr::Str(_) | ConditionIr::Ref(_) => false,
}
}
}
Expand Down

0 comments on commit 9e8b00c

Please sign in to comment.