File tree Expand file tree Collapse file tree 2 files changed +9
-10
lines changed
crates/filament/src/ir_passes Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -16,25 +16,25 @@ version = "0.1.0"
1616rust-version = " 1.85"
1717
1818[workspace .dependencies ]
19- toml = " 0.8 "
19+ toml = " 0.9 "
2020serde = " 1.0"
2121argh = " 0.1"
2222log = " 0.4"
2323pest = " 2.1"
2424pest_consume = " 1.1"
2525pest_derive = " 2.1"
2626linked_hash_set = " 0.1"
27- itertools = " 0.10 "
27+ itertools = " 0.14 "
2828linked-hash-map = " 0.5"
2929derivative = " 2.2"
3030smallvec = " 1"
3131topological-sort = " 0.2"
3232atty = " 0.2"
3333lazy_static = " 1.4"
34- easy-smt = { version = " 0.2.1 " }
34+ easy-smt = { version = " 0.3.2 " }
3535struct-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 "
3838boxcar = " 0.2.10"
3939
4040fil-utils = { version = " 0.1.0" , path = " crates/utils" }
@@ -50,12 +50,10 @@ calyx-opt = { version = "0.7.1" }
5050calyx-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 "
5957features = [" ascii-only" ]
6058
6159[workspace .dependencies .bitvec ]
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments