-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathCargo.toml
149 lines (143 loc) · 4.26 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
[workspace]
members = [
"crates/*",
"languages/c",
"languages/elixir",
"languages/javascript/node",
"languages/javascript/wasm",
"languages/python",
"languages/rust",
"languages/rust/examples/*",
]
resolver = "2"
[workspace.package]
authors = ["ModelFox <[email protected]>"]
description = "ModelFox makes it easy to train, deploy, and monitor machine learning models."
documentation = "https://docs.rs/modelfox"
edition = "2021"
homepage = "https://modelfox.dev"
license = "MIT"
repository = "https://github.com/modelfoxdotdev/modelfox"
version = "0.8.0"
[workspace.dependencies]
anyhow = { version = "1.0", features = ["backtrace"] }
backtrace = "0.3"
base64 = "0.13"
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"
modelfox = { path = "languages/rust" }
modelfox_app = { path = "crates/app" }
modelfox_app_core = { path = "crates/app/core" }
modelfox_charts = { path = "crates/charts" }
modelfox_core = { path = "crates/core" }
modelfox_features = { path = "crates/features" }
modelfox_finite = { path = "crates/finite" }
modelfox_id = { path = "crates/id" }
modelfox_kill_chip = { path = "crates/kill_chip" }
modelfox_license = { path = "crates/license" }
modelfox_linear = { path = "crates/linear" }
modelfox_metrics = { path = "crates/metrics" }
modelfox_model = { path = "crates/model" }
modelfox_number_formatter = { path = "crates/number_formatter" }
modelfox_progress_counter = { path = "crates/progress_counter" }
modelfox_serve = { path = "crates/serve" }
modelfox_table = { path = "crates/table" }
modelfox_text = { path = "crates/text" }
modelfox_tree = { path = "crates/tree" }
modelfox_ui = { path = "crates/ui" }
modelfox_zip = { path = "crates/zip" }
[profile.dev.build-override]
debug-assertions = false
opt-level = 3
overflow-checks = false
[profile.release.build-override]
debug-assertions = false
opt-level = 3
overflow-checks = false
[profile.release]
lto = true
strip = true