Skip to content

Commit

Permalink
Remove junk in the .toml-files
Browse files Browse the repository at this point in the history
  • Loading branch information
sarsko committed Dec 23, 2022
1 parent 10f45dc commit b2646ef
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 108 deletions.
11 changes: 11 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,14 @@ opt-level = 3
panic = "abort"
incremental = false
rpath = false

[profile.bench]
debug = false
lto = true
opt-level = 3

[profile.test]
debug = false
lto = true
opt-level = 3

18 changes: 0 additions & 18 deletions CreuSAT/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,6 @@ version = "0.1.0"
authors = ["Sarek Høverstad Skotåm <sarek.skotam@gmail.com>"]
edition = "2021"

[toolchain]
channel = "nightly-2022-11-25"

[profile.bench]
debug = false
lto = true
opt-level = 3

[profile.test]
debug = false
lto = true
opt-level = 3

[profile.release]
debug = false
lto = true
opt-level = 3

[dependencies]
#clap = "4.0.18"
clap = "2.33.3"
Expand Down
17 changes: 0 additions & 17 deletions Friday/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,6 @@ version = "0.1.0"
authors = ["Sarek Høverstad Skotåm <sarek.skotam@gmail.com>"]
edition = "2021"

[toolchain]
channel = "nightly-2022-11-25"

[profile.bench]
debug = false
lto = true
opt-level = 3

[profile.test]
debug = false
lto = true
opt-level = 3

[profile.release]
debug = false
lto = true
opt-level = 3

[dependencies]
#clap = "2.33.3"
Expand Down
36 changes: 0 additions & 36 deletions JigSAT/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,42 +4,6 @@ version = "0.1.0"
authors = ["Sarek Høverstad Skotåm <sarek.skotam@gmail.com>"]
edition = "2021"

[toolchain]
channel = "nightly-2022-11-25"

[profile.bench]
debug = false
lto = true
opt-level = 3

[profile.test]
#debug = false
#lto = true
#opt-level = 3

debug = false
#split-debuginfo = ?
debug-assertions = false
overflow-checks = false
lto = "fat"
codegen-units = 1
opt-level = 3
panic = "abort"
incremental = false
rpath = false

[profile.release]
debug = false
#split-debuginfo = ?
debug-assertions = false
overflow-checks = false
lto = "fat"
codegen-units = 1
opt-level = 3
panic = "abort"
incremental = false
rpath = false

[dependencies]
clap = "2.33.3"
log = "0.4"
Expand Down
18 changes: 0 additions & 18 deletions Robinson/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,6 @@ version = "0.1.0"
authors = ["Sarek Høverstad Skotåm <sarek.skotam@gmail.com>"]
edition = "2021"

[toolchain]
channel = "nightly-2022-11-25"

[profile.bench]
debug = false
lto = true
opt-level = 3

[profile.test]
debug = false
lto = true
opt-level = 3

[profile.release]
debug = false
lto = true
opt-level = 3

[dependencies]
clap = "2.33.3"
creusot-contracts = { git = "https://github.com/xldenis/creusot", version = "^0", rev = "2cf7870" }
Expand Down
1 change: 1 addition & 0 deletions Robinson/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![feature(type_ascription)]
#![allow(non_snake_case)]
#![cfg_attr(not(feature = "contracts"), feature(stmt_expr_attributes, proc_macro_hygiene))]
#![allow(unused)]
extern crate creusot_contracts;
Expand Down
17 changes: 1 addition & 16 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,10 @@
[package]
name = "CreuSAT_test"
version = "0.1.0"
authors = ["Sarek Høverstad Skotåm <sarekhs@uio.no>"]
authors = ["Sarek Høverstad Skotåm <sarek.skotam@gmail.com>"]
edition = "2021"
include = ["*"]

[toolchain]
channel = "nightly-2022-05-14"

[profile.release]
debug = false
#split-debuginfo = ?
debug-assertions = false
overflow-checks = false
lto = "fat"
codegen-units = 1
opt-level = 3
panic = "abort"
incremental = false
rpath = false

[dependencies]
CreuSAT = { path = "../CreuSAT" }
JigSAT = { path = "../JigSAT" }
Expand Down
5 changes: 2 additions & 3 deletions tests/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use std::fs::read_dir;
use std::io::Write;
use std::time::Instant;
#![allow(non_snake_case)]
use std::{fs::read_dir, io::Write, time::Instant};
use termcolor::*;

extern crate JigSAT;
Expand Down

0 comments on commit b2646ef

Please sign in to comment.