-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
51 lines (45 loc) · 1.22 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
[workspace]
resolver = "2"
members = [
"nemo",
"nemo-cli",
"nemo-physical",
"nemo-python",
"nemo-wasm",
"nemo-benches",
]
[workspace.package]
description = "nemo, a datalog-based rule engine for fast and scalable analytic data processing in memory"
version = "0.3.0"
authors = [
"Alex Ivliev <[email protected]>",
"Lukas Gerlach <[email protected]>",
"Markus Krötzsch <[email protected]>",
"Matthias Meissner <[email protected]>",
"Maximilian Marx <[email protected]>",
"Philipp Hanisch <[email protected]>",
"Simon Meusel <[email protected]>",
"Stefan Ellmauthaler <[email protected]>",
]
edition = "2021"
homepage = "https://github.com/knowsys/nemo"
license = "APACHE-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/knowsys/nemo"
[profile.dev]
panic = "unwind"
[profile.release]
panic = "unwind"
debug = true
#debug profile without debug assertions
[profile.debug-noassert]
inherits = "dev"
debug-assertions = false
#profile with minimal executable size
[profile.release-minimal]
inherits = "release"
panic = "abort"
debug = false
strip = true
[profile.bench]
inherits = "release-minimal"