-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 878 Bytes
/
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
[workspace.package]
edition = "2021"
homepage = "https://biodatageeks.github.io/sequila/"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/biodatageeks/sequila-native.git"
version = "0.1.0"
rust-version = "1.76"
[workspace]
members = ["sequila/sequila-cli", "sequila/sequila-core"]
resolver = "2"
[workspace.dependencies]
sequila-core = { path = "sequila/sequila-core" }
sequila-cli = { path = "sequila/sequila-cli" }
datafusion = { default-features = false, version = "43.0.0", features = [
"unicode_expressions",
"crypto_expressions",
] }
datafusion-cli = { default-features = false, version = "43.0.0" }
tokio = { version = "1.36.0", features = ["rt-multi-thread"] }
env_logger = "0.11.5"
log = "0.4.22"
emojis = "0.6.3"
# https://doc.rust-lang.org/cargo/reference/profiles.html#release
[profile.profiling]
inherits = "release"
debug = true