-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
94 lines (88 loc) · 3.23 KB
/
Copy pathCargo.toml
File metadata and controls
94 lines (88 loc) · 3.23 KB
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
85
86
87
88
89
90
91
92
93
94
[workspace]
default-members = ["crates/xlake-cli"]
members = ["crates/*"]
exclude = ["crates/target"]
resolver = "2"
[workspace.package]
authors = ["Ho Kim <ho.kim@ulagbulag.io>"]
description = "A GStreamer-like Workflow Framework, supporing Python and Web UI, powered by K8S & Rust"
documentation = "https://docs.rs/xlake"
edition = "2021"
include = ["src/**/*.rs", "Cargo.toml"]
keywords = ["datalake", "pipeline", "xlake"]
license = "Apache-2.0 OR MIT"
readme = "./README.md"
rust-version = "1.78"
homepage = "https://github.com/SmartX-Team/XLake"
repository = "https://github.com/SmartX-Team/XLake"
version = "0.1.0"
[workspace.lints.clippy]
blocks_in_conditions = "allow" # opentelemetry tracing macro would be noisy
[workspace.dependencies]
xlake = { path = "./crates/xlake" }
xlake-ast = { path = "./crates/xlake-ast" }
xlake-core = { path = "./crates/xlake-core" }
xlake-derive = { path = "./crates/xlake-derive" }
xlake-parser = { path = "./crates/xlake-parser" }
cdl-k8s-core = { git = "https://github.com/SmartX-Team/connected-data-lake", default-features = false }
anyhow = { version = "1.0", default-features = false, features = [
"backtrace",
"std",
] }
arrow-json = { version = "53", default-features = false }
async-tempfile = { version = "0.6", default-features = false }
async-trait = { version = "0.1", default-features = false }
blake2 = { version = "0.10", default-features = false, features = ["std"] }
bs58 = { version = "0.5", default-features = false, features = ["std"] }
clap = { version = "4.5", default-features = false, features = [
"color",
"derive",
"env",
"error-context",
"help",
"std",
"string",
"suggestions",
"usage",
] }
cruet = { version = "0.14", default-features = false }
datafusion = { version = "43", default-features = false, features = [
"array_expressions",
"compression",
"crypto_expressions",
"datetime_expressions",
"encoding_expressions",
"math_expressions",
"nested_expressions",
"regex_expressions",
"serde",
"string_expressions",
"unicode_expressions",
] }
digest = { version = "0.10", default-features = false, features = ["std"] }
futures = { version = "0.3", default-features = false }
lalrpop = { version = "0.22", default-features = false }
lalrpop-util = { version = "0.22", default-features = false }
num-format = { version = "0.4", default-features = false, features = ["std"] }
object_store = { version = "0.11", default-features = false }
quote = { version = "1.0", default-features = false, features = ["proc-macro"] }
serde = { version = "1.0", default-features = false, features = ["std"] }
serde_json = { version = "1.0", default-features = false, features = ["std"] }
serde_with = { version = "3.11", default-features = false, features = [
"macros",
"std",
] }
snmalloc-rs = { version = "0.3", features = ["lto", "native-cpu"] }
syn = { version = "2.0", default-features = false, features = [
"clone-impls",
"derive",
"parsing",
"printing",
"proc-macro",
] }
tokio = { version = "1.42", default-features = false }
tracing = { version = "0.1", default-features = false, features = ["std"] }
which = { version = "7.0", default-features = false, features = ["tracing"] }
[profile.release]
codegen-units = 1
lto = true