-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
112 lines (110 loc) · 3.37 KB
/
Cargo.toml
File metadata and controls
112 lines (110 loc) · 3.37 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
[workspace]
members = [
"crates/*",
]
[workspace.dependencies]
anyhow = { version = "1.0", features = ["backtrace"] }
backtrace = "0.3"
base64 = "0.13.1"
bitvec = "1.0"
buffalo = { version = "0.4", features = ["bitvec", "ndarray"] }
bytes = "1.1"
cbindgen = "0.24"
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = { version = "0.6", features = ["serde"] }
clap = { version = "3.1", features = ["derive"] }
colored = "2.0"
console_error_panic_hook = "0.1"
convert_case = "0.5"
csv = "1.0"
digest = "0.10"
dirs = "4.0"
duct = "0.13"
either = "1.0"
erl_nif = { version = "0.5", features = ["serde"] }
fast-float = "0.2"
flate2 = "1.0"
fnv = "1.0"
futures = "0.3"
futures-signals = "0.3"
getrandom = { version = "0.2", features = ["js"] }
glob = "0.3"
hex = "0.4"
http = "0.2"
hyper = { version = "0.14", features = ["full"] }
indexmap = { version = "1.6", features = ["serde-1"] }
indoc = "1.0"
insta = "1.0"
itertools = "0.10"
lettre = { version = "0.10.0-rc.2", default-features = false, features = ["builder", "hostname", "smtp-transport", "tokio1-rustls-tls"] }
libc = "0.2.91"
md-5 = "0.10"
memmap = "0.7"
multer = "2.0"
ndarray = { version = "0.15", features = ["rayon"] }
node_api = { version = "0.5", features = ["serde"] }
num = "0.4"
once_cell = "1.0"
pem = "1.0"
percent-encoding = "2.0"
pinwheel = "0.2"
pulldown-cmark = "0.9"
pretty_assertions = "1.0"
proc-macro2 = "1"
pyo3 = { version = "0.16", features = ["abi3-py37", "extension-module"] }
quote = "1"
rand = "0.8"
rand_xoshiro = "0.6"
rayon = "1.5"
regex = "1.5"
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls"] }
rsa = "0.6"
rust-s3 = { version = "0.31", default-features = false, features = ["tokio-rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1.0"
serde_urlencoded = "0.7"
serde_yaml = "0.8"
serde-wasm-bindgen = "0.4"
sha-1 = "0.10"
sha2 = "0.10"
sqlx = { version = "0.5", default-features = false, features = ["any", "chrono", "postgres", "runtime-tokio-rustls", "sqlite"] }
sunfish = "0.7"
syn = { version = "1", features = ["full"] }
tar = "0.4"
tempfile = "3.0"
textwrap = "0.15"
time = "0.3"
tokio = { version = "1.18", features = ["full"] }
toml = "0.5"
tortoise = "0.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tracing-test = "0.2"
tracing-wasm = "0.2"
tree-sitter-highlight = "0.20"
tree-sitter-javascript = "0.20"
tree-sitter-rust = "0.20"
url = { version = "2.2", features = ["serde"] }
urlencoding = { version = "2.1" }
walkdir = "2.0"
wasm-bindgen = "0.2"
web-sys = "0.3"
winapi = "0.3"
zip = "0.6"
shadow_zip = {path = "crates/shadow_zip"}
shadow_id = {path = "crates/shadow_id"}
shadow_progress_counter = {path = "crates/shadow_progress_counter"}
shadow_serve = {path = "crates/shadow_serve"}
shadow_finite = {path = "crates/shadow_finite"}
shadow_kill_chip = {path = "crates/shadow_kill_chip"}
shadow_text = {path = "crates/shadow_text"}
shadow_number_formatter = {path = "crates/shadow_number_formatter"}
shadow_metrics = {path = "crates/shadow_metrics"}
shadow_model = {path = "crates/shadow_model"}
shadow_license = {path = "crates/shadow_license"}
shadow_features = {path = "crates/shadow_features"}
shadow_table = {path = "crates/shadow_table"}
shadow_linear = {path = "crates/shadow_linear"}
shadow_tree = {path = "crates/shadow_tree"}
shadow_charts = {path = "crates/shadow_charts"}