-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
134 lines (126 loc) · 3.92 KB
/
Copy pathCargo.toml
File metadata and controls
134 lines (126 loc) · 3.92 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
[workspace]
resolver = "2"
members = [
"crates/data",
"crates/datafusion",
"crates/substrait",
"crates/io",
"crates/analysis",
"crates/processing",
"crates/figure",
"crates/render",
"crates/core",
"crates/cli",
"crates/app",
"xtask",
]
# DataFusion and Substrait remain workspace members for explicit maintenance,
# but bare root builds stay on the lightweight reference executor.
default-members = [
"crates/data",
"crates/io",
"crates/analysis",
"crates/processing",
"crates/figure",
"crates/render",
"crates/core",
"crates/cli",
"crates/app",
"xtask",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "GPL-3.0-or-later"
authors = ["Jiekang Tian <jiekangtian@gmail.com>"]
publish = false
repository = "https://github.com/nmrtist/plotx"
[workspace.dependencies]
colorous = "1"
num-complex = "0.4"
nalgebra = { version = "0.35", default-features = false, features = ["std"] }
rustfft = "6.4"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = { version = "1.0", features = ["float_roundtrip"] }
semver = "1"
sha2 = "0.10"
ureq = { version = "2", default-features = false, features = ["tls"] }
thiserror = "2.0"
unicode-width = "0.2"
statrs = { version = "0.18", default-features = false }
tukey_test = "0.2"
directories = "6"
log = "0.4"
uuid = { version = "1", features = ["serde", "v4"] }
arrow = { version = "58.3", default-features = false, features = ["ipc"] }
datafusion = { version = "54.0", default-features = false }
datafusion-substrait = { version = "54.0", default-features = false }
futures = "0.3"
substrait = { version = "0.63", default-features = false, features = ["serde"] }
prost = "0.14"
pbjson-types = "0.8"
chrono-tz = "0.10"
calamine = { version = "0.36", default-features = false, features = ["dates"] }
rust_xlsxwriter = { version = "0.96", default-features = false, features = ["constant_memory"] }
tokio = { version = "1", features = ["rt"] }
egui = "0.34"
eframe = { version = "0.34", default-features = true }
egui_extras = { version = "0.34", default-features = false }
egui-phosphor = "0.12"
fontdb = "0.23"
muda = { version = "0.19.3", default-features = false }
rfd = "0.17"
rhai = { version = "1", features = ["serde", "sync"] }
zip = { version = "8.6", default-features = false, features = ["deflate"] }
quick-xml = { version = "0.41", default-features = false }
base64 = "0.22"
flate2 = { version = "1.1", default-features = false, features = ["rust_backend"] }
image = { version = "0.25", default-features = false, features = ["bmp", "jpeg", "png", "tiff", "webp"] }
tiff = "0.11"
memmap2 = "0.9"
tempfile = "3"
arboard = "3.6"
libc = "0.2"
pdf-writer = "0.12"
resvg = "0.47"
svg2pdf = "0.13"
raw-window-handle = "0.6"
windows-sys = { version = "0.61", features = [
"Win32_Foundation",
"Win32_Graphics_Dwm",
"Win32_Graphics_Gdi",
"Win32_Storage_FileSystem",
"Win32_System_DataExchange",
"Win32_System_Memory",
"Win32_System_Ole",
"Win32_System_ProcessStatus",
"Win32_System_Threading",
"Win32_UI_Controls",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
] }
plotx-io = { path = "crates/io" }
plotx-data = { path = "crates/data" }
plotx-datafusion = { path = "crates/datafusion" }
plotx-substrait = { path = "crates/substrait" }
plotx-analysis = { path = "crates/analysis" }
plotx-processing = { path = "crates/processing" }
plotx-figure = { path = "crates/figure" }
plotx-render = { path = "crates/render" }
plotx-core = { path = "crates/core", default-features = false }
[profile.dev]
debug = 0
# Keep numerical hot paths responsive in debug builds.
[profile.dev.package.plotx-analysis]
opt-level = 3
[profile.dev.package.plotx-processing]
opt-level = 3
# rustfft is the only third-party dependency that needs optimized debug code.
[profile.dev.package.rustfft]
opt-level = 2
[profile.release]
lto = false
codegen-units = 16
debug = 0
strip = true