-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
84 lines (68 loc) · 1.92 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# -----------------------------------------------
# ---- Package --------------------------------
# -----------------------------------------------
[package]
name = 'proof'
version = '0.1.0'
edition = '2021'
authors = ['Maximilian Moeller']
description = 'Implementation for my research project on local search for learning PaRtial bOOlean Functions.'
documentation = ''
license = 'GPL-3.0'
readme = 'README.md'
homepage = ''
repository = 'https://github.com/MMurmel/PROOF'
keywords = [
'local_search',
'binary_fuctions',
'partial_functions',
'machine_learning',
]
categories = [
'algorithms',
'data-structures',
'science',
'command-line-utilities'
]
publish = false
# -----------------------------------------------
# ---- Profiles -------------------------------
# -----------------------------------------------
[profile.release]
codegen-units = 1
incremental = true
lto = true
overflow-checks = true
[profile.dev]
lto = false
# -----------------------------------------------
# ---- General Dependencies -------------------
# -----------------------------------------------
[dependencies]
# CLI Arguments
clap = { version = "3.2.14", features = ["derive"] }
clap-verbosity-flag = "1.0.0"
# Logging
log = "0.4.17"
env_logger = "0.9.0"
time = { version = "0.3.9", features = ['formatting', 'local-offset'] }
chrono = "0.4.22"
# Serialization and Deserialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Random number generator
rand = "0.8.5"
# Image creation
image = "0.24.3"
rayon = "1.5"
# Bitmaps for faster data access
bitmaps = "3.2.0"
# -----------------------------------------------
# ---- Workspace ------------------------------
# -----------------------------------------------
[workspace]
# -----------------------------------------------
# ---- Tests ----------------------------------
# -----------------------------------------------
[[test]]
name = 'default'