Skip to content

Commit e477160

Browse files
authored
Merge pull request #155 from yannbolliger/rust-interop
Merge rust interop features
2 parents 6f5ea7c + 1fb1ca8 commit e477160

15 files changed

+219
-46
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ Inox.eml
3434
Inox.iml
3535
/.idea_modules
3636

37+
#vscode and metals
38+
.vscode/
39+
.metals/
40+
3741
#scripts
3842
out-classes
3943

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ information, see:
2020
### Add Inox as a dependency
2121

2222
To add Inox as a dependency of your project, add the following lines to your `build.sbt`,
23-
where `VERSION` can be replaced by a tag (eg. `v1.1.5`), a branch name (eg. `rust-interop`)
23+
where `VERSION` can be replaced by a tag (eg. `v1.1.5`), a branch name (eg. `master`)
2424
or a commit hash (eg. `6dfb351eee`).
2525

2626
```scala

build.sbt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@ lazy val root = (project in file("."))
133133
.dependsOn(smtlib)
134134

135135

136+
mainClass in (Compile, run) := Some("inox.Main")
137+
136138
publishMavenStyle := true
137139

138140
publishTo := {
59 Bytes
Binary file not shown.
110 Bytes
Binary file not shown.
123 Bytes
Binary file not shown.
19 Bytes
Binary file not shown.
54 Bytes
Binary file not shown.
55 Bytes
Binary file not shown.
9 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)