forked from finos/perspective
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
175 lines (146 loc) · 5.3 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
# ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
# ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
# ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
# ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
# ┃ Copyright (c) 2017, the Perspective Authors. ┃
# ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
# ┃ This file is part of the Perspective library, distributed under the terms ┃
# ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
# ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
[package]
name = "perspective"
version = "2.7.0"
authors = ["Andrew Stein <[email protected]>"]
edition = "2021"
description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets."
repository = "https://github.com/finos/perspective"
license = "Apache-2.0"
homepage = "https://perspective.finos.org"
keywords = ["experimental"]
build = "build.rs"
include = [
"build.rs",
"src/**/*",
"Cargo.toml",
"package.json",
"tasks/bundle/*",
]
[workspace]
members = ["tasks/bundle", "tasks/bootstrap-runtime", "tasks/bootstrap"]
[lib]
crate-type = ["cdylib", "rlib"]
path = "src/rust/lib.rs"
[profile.dev]
panic = "abort"
opt-level = "s"
[profile.release]
panic = "abort"
opt-level = "z"
codegen-units = 1
lto = true
strip = true
[build-dependencies]
serde_json = { version = "1.0.59", features = ["raw_value"] }
procss = { version = "0.1.14" }
glob = "0.3.0"
anyhow = "1.0.66"
[dev-dependencies]
wasm-bindgen-test = "0.3.13"
[dependencies]
# Provides async `Mutex` for locked sections such as `render`
async-lock = "2.5.0"
# Allow async methods to be used in traits
async-trait = "^0.1.73"
# Encode persistence tokens
base64 = "0.13.0"
# Timezone correction
chrono = "0.4"
# More derivable traits
derivative = "2.2.0"
# Easy way to define & implement a singleton trait (type extension)
extend = "1.1.2"
# Compress tokens
flate2 = "1.0.20"
# General async tools
futures = "0.3.28"
# General iterator improvements
itertools = "0.10.1"
# Performance improvements for common string to JS conversions
js-intern = "0.3.1"
# JavaScript stdlib bindings
js-sys = "0.3.64"
# Parse ExprTK for syntax highlighting.
nom = "7.1.1"
# Comma-sep numeric representation
num-format = "0.4.4"
# MessagePack serialization
rmp-serde = "1.1.1"
# Serialization for tokens and JS APIs
serde = { version = "1.0", features = ["derive"] }
# Support for "unknown"/dictionary types such as `plugin_config`
serde_json = { version = "1.0.107", features = ["raw_value"] }
# Faster struct serialize/deserialize
serde-wasm-bindgen = "0.6.0"
# Async-aware logging that can be disabled at compile-time.
tracing = { version = ">=0.1.36", features = ["release_max_level_error"] }
tracing-subscriber = "0.3.15"
# Browser API bindings
wasm-bindgen = { version = "=0.2.87", features = ["serde-serialize"] }
# Browser `Promise` bindings
wasm-bindgen-futures = "0.4.37"
# Web framework
yew = { version = "0.21.0", features = ["csr"] }
# Browser stdlib bindings
web-sys.version = "0.3.64"
web-sys.features = [
"Blob",
"Clipboard",
"CssStyleDeclaration",
"CssStyleSheet",
"CssRuleList",
"CssRule",
"CssStyleRule",
"CustomEvent",
"CustomEventInit",
"DataTransfer",
"Document",
"DomRect",
"DomStringMap",
"DomTokenList",
"Element",
"Event",
"EventTarget",
"EventListener",
"FontFace",
"FontFaceSet",
"FontFaceSetIterator",
"FontFaceSetIteratorResult",
"HtmlCollection",
"HtmlElement",
"HtmlTextAreaElement",
"HtmlStyleElement",
"HtmlSelectElement",
"InputEvent",
"KeyboardEvent",
"MutationObserver",
"MutationObserverInit",
"MutationRecord",
"Navigator",
"Node",
"NodeList",
"Performance",
"PerformanceMark",
"Range",
"ReadableStreamDefaultReader",
"Selection",
"ShadowRoot",
"ShadowRootMode",
"ShadowRootInit",
"StyleSheet",
"StyleSheetList",
"Url",
"VisibilityState",
"Window",
]