-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
59 lines (53 loc) · 1.43 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
[workspace]
resolver = "2"
default-members = [
"nemo",
"nemo-cli",
"nemo-physical",
"nemo-python",
]
members = [
"nemo",
"nemo-cli",
"nemo-physical",
"nemo-python",
"nemo-language-server",
"nemo-wasm",
]
[workspace.package]
description = "Nemo, a datalog-based rule engine for fast and scalable analytic data processing in memory"
version = "0.6.1-dev"
authors = [
"Alex Ivliev <[email protected]>",
"Aidan Bailey <[email protected]>",
"Jakob Steinberg <[email protected]>",
"Lukas Gerlach <[email protected]>",
"Larry González <[email protected]>",
"Markus Krötzsch <[email protected]>",
"Matthias Meissner <[email protected]>",
"Maximilian Marx <[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"