Skip to content

Commit edf1b31

Browse files
authored
update packages (#508)
1 parent e540ae6 commit edf1b31

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

Cargo.toml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,25 @@ version = "0.1.0"
1616
rust-version = "1.85"
1717

1818
[workspace.dependencies]
19-
toml = "0.8"
19+
toml = "0.9"
2020
serde = "1.0"
2121
argh = "0.1"
2222
log = "0.4"
2323
pest = "2.1"
2424
pest_consume = "1.1"
2525
pest_derive = "2.1"
2626
linked_hash_set = "0.1"
27-
itertools = "0.10"
27+
itertools = "0.14"
2828
linked-hash-map = "0.5"
2929
derivative = "2.2"
3030
smallvec = "1"
3131
topological-sort = "0.2"
3232
atty = "0.2"
3333
lazy_static = "1.4"
34-
easy-smt = { version = "0.2.1" }
34+
easy-smt = { version = "0.3.2" }
3535
struct-variant = "1.0"
36-
strum = "0.26.3"
37-
strum_macros = "0.26.3"
36+
strum = "0.27.2"
37+
strum_macros = "0.27.2"
3838
boxcar = "0.2.10"
3939

4040
fil-utils = { version = "0.1.0", path = "crates/utils" }
@@ -50,12 +50,10 @@ calyx-opt = { version = "0.7.1" }
5050
calyx-backend = { version = "0.7.1" }
5151

5252
[workspace.dependencies.env_logger]
53-
version = "0.9"
54-
features = ["termcolor", "atty"]
55-
default-features = false
53+
version = "0.11"
5654

5755
[workspace.dependencies.codespan-reporting]
58-
version = "0.11"
56+
version = "0.12"
5957
features = ["ascii-only"]
6058

6159
[workspace.dependencies.bitvec]

crates/filament/src/ir_passes/discharge.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ impl Discharge {
126126
.as_ref()
127127
.map(|s| fs::File::create(s).unwrap()),
128128
)
129-
.solver(name, s_opts)
129+
.solver(name)
130+
.solver_args(s_opts)
130131
.build()
131132
.unwrap()
132133
}

0 commit comments

Comments
 (0)