We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b73fc61 commit 0a0311bCopy full SHA for 0a0311b
2 files changed
.github/workflows/rust.yml
@@ -62,12 +62,6 @@ jobs:
62
63
steps:
64
- uses: actions/checkout@v6
65
- - name: Install MSYS2
66
- uses: msys2/setup-msys2@v2
67
- with:
68
- msystem: MINGW64
69
- update: true
70
- install: base-devel git
71
- name: Install radare2
72
run: |
73
choco install radare2 -y
radius/Cargo.toml
@@ -19,7 +19,13 @@ rand = "0.8.4"
19
colored = "2.0.0"
20
21
[features]
22
-default = ["boolector/vendor-lgl"]
+default = []
23
+
24
+[target.'cfg(not(windows))'.dependencies]
25
+boolector = { version = "0.4.3", features = ["vendor-lgl"] }
26
27
+[target.'cfg(windows)'.dependencies]
28
+boolector = "0.4.3"
29
30
[package.metadata.docs.rs]
31
no-default-features = true
0 commit comments