1
+ cargo-features = [" workspace-inheritance" ]
2
+
1
3
[package ]
2
- edition = " 2021"
3
- license = " UNLICENSED"
4
4
name = " modelfox_app"
5
+
6
+ authors = { workspace = true }
7
+ edition = { workspace = true }
8
+ homepage = { workspace = true }
9
+ license = " UNLICENSED"
5
10
publish = false
6
- version = " 0.0.0"
11
+ repository = { workspace = true }
12
+ version = { workspace = true }
7
13
8
14
[lib ]
9
15
path = " lib.rs"
@@ -22,110 +28,112 @@ default = [
22
28
" modelfox_app_login_server" ,
23
29
" modelfox_app_model_download_server" ,
24
30
" modelfox_app_model_edit_server" ,
25
- " modelfox_app_model_index_client" ,
31
+ # "modelfox_app_model_index_client",
26
32
" modelfox_app_model_index_server" ,
27
33
" modelfox_app_monitors_edit_server" ,
28
34
" modelfox_app_monitors_index_server" ,
29
35
" modelfox_app_new_member_server" ,
30
- " modelfox_app_new_model_client" ,
36
+ # "modelfox_app_new_model_client",
31
37
" modelfox_app_new_model_server" ,
32
- " modelfox_app_new_monitor_client" ,
38
+ # "modelfox_app_new_monitor_client",
33
39
" modelfox_app_new_monitor_server" ,
34
40
" modelfox_app_new_organization_server" ,
35
41
" modelfox_app_new_repo_server" ,
36
42
" modelfox_app_organization_index_server" ,
37
43
" modelfox_app_organization_member_server" ,
38
- " modelfox_app_playground_client" ,
44
+ # "modelfox_app_playground_client",
39
45
" modelfox_app_playground_server" ,
40
- " modelfox_app_production_class_metrics_client" ,
46
+ # "modelfox_app_production_class_metrics_client",
41
47
" modelfox_app_production_class_metrics_server" ,
42
- " modelfox_app_production_metrics_index_client" ,
48
+ # "modelfox_app_production_metrics_index_client",
43
49
" modelfox_app_production_metrics_index_server" ,
44
- " modelfox_app_production_prediction_client" ,
50
+ # "modelfox_app_production_prediction_client",
45
51
" modelfox_app_production_prediction_server" ,
46
52
" modelfox_app_production_predictions_index_server" ,
47
- " modelfox_app_production_stats_column_client" ,
53
+ # "modelfox_app_production_stats_column_client",
48
54
" modelfox_app_production_stats_column_server" ,
49
- " modelfox_app_production_stats_index_client" ,
55
+ # "modelfox_app_production_stats_index_client",
50
56
" modelfox_app_production_stats_index_server" ,
51
57
" modelfox_app_repo_edit_server" ,
52
58
" modelfox_app_repo_index_server" ,
53
59
" modelfox_app_track_server" ,
54
- " modelfox_app_training_class_metrics_client" ,
60
+ # "modelfox_app_training_class_metrics_client",
55
61
" modelfox_app_training_class_metrics_server" ,
56
62
" modelfox_app_training_grid_index_server" ,
57
63
" modelfox_app_training_grid_item_server" ,
58
64
" modelfox_app_training_metrics_index_server" ,
59
- " modelfox_app_training_metrics_precision_recall_client" ,
65
+ # "modelfox_app_training_metrics_precision_recall_client",
60
66
" modelfox_app_training_metrics_precision_recall_server" ,
61
- " modelfox_app_training_metrics_roc_client" ,
67
+ # "modelfox_app_training_metrics_roc_client",
62
68
" modelfox_app_training_metrics_roc_server" ,
63
- " modelfox_app_training_stats_column_client" ,
69
+ # "modelfox_app_training_stats_column_client",
64
70
" modelfox_app_training_stats_column_server" ,
65
71
" modelfox_app_training_stats_index_server" ,
66
- " modelfox_app_tuning_client" ,
72
+ # "modelfox_app_tuning_client",
67
73
" modelfox_app_tuning_server" ,
68
74
" modelfox_app_user_server" ,
69
75
]
70
76
71
77
[build-dependencies ]
72
- anyhow = { version = " 1 " , features = [ " backtrace " ] }
73
- sunfish = " 0.7 "
74
- modelfox_app_model_index_client = { path = " routes/repos/_/models/_/index/client" , optional = true , artifact = " bin" , target = " wasm32-unknown-unknown" }
75
- modelfox_app_new_model_client = { path = " routes/repos/_/models/new/client" , optional = true , artifact = " bin" , target = " wasm32-unknown-unknown" }
76
- modelfox_app_new_monitor_client = { path = " routes/repos/_/models/_/monitors/new/client" , optional = true , artifact = " bin" , target = " wasm32-unknown-unknown" }
77
- modelfox_app_playground_client = { path = " routes/repos/_/models/_/playground/client" , optional = true , artifact = " bin" , target = " wasm32-unknown-unknown" }
78
- modelfox_app_production_class_metrics_client = { path = " routes/repos/_/models/_/production_metrics/class_metrics/client" , optional = true , artifact = " bin" , target = " wasm32-unknown-unknown" }
79
- modelfox_app_production_metrics_index_client = { path = " routes/repos/_/models/_/production_metrics/index/client" , optional = true , artifact = " bin" , target = " wasm32-unknown-unknown" }
80
- modelfox_app_production_prediction_client = { path = " routes/repos/_/models/_/production_predictions/predictions/_/client" , optional = true , artifact = " bin" , target = " wasm32-unknown-unknown" }
81
- modelfox_app_production_stats_column_client = { path = " routes/repos/_/models/_/production_stats/columns/_/client" , optional = true , artifact = " bin" , target = " wasm32-unknown-unknown" }
82
- modelfox_app_production_stats_index_client = { path = " routes/repos/_/models/_/production_stats/index/client" , optional = true , artifact = " bin" , target = " wasm32-unknown-unknown" }
83
- modelfox_app_training_class_metrics_client = { path = " routes/repos/_/models/_/training_metrics/class_metrics/client" , optional = true , artifact = " bin" , target = " wasm32-unknown-unknown" }
84
- modelfox_app_training_metrics_precision_recall_client = { path = " routes/repos/_/models/_/training_metrics/precision_recall/client" , optional = true , artifact = " bin" , target = " wasm32-unknown-unknown" }
85
- modelfox_app_training_metrics_roc_client = { path = " routes/repos/_/models/_/training_metrics/roc/client" , optional = true , artifact = " bin" , target = " wasm32-unknown-unknown" }
86
- modelfox_app_training_stats_column_client = { path = " routes/repos/_/models/_/training_stats/columns/_/client" , optional = true , artifact = " bin" , target = " wasm32-unknown-unknown" }
87
- modelfox_app_tuning_client = { path = " routes/repos/_/models/_/tuning/client" , optional = true , artifact = " bin" , target = " wasm32-unknown-unknown" }
78
+ anyhow = { workspace = true }
79
+ sunfish = { workspace = true }
80
+ modelfox_app_model_index_client = { path = " routes/repos/_/models/_/index/client" , artifact = " bin" , target = " wasm32-unknown-unknown" }
81
+ modelfox_app_new_model_client = { path = " routes/repos/_/models/new/client" , artifact = " bin" , target = " wasm32-unknown-unknown" }
82
+ modelfox_app_new_monitor_client = { path = " routes/repos/_/models/_/monitors/new/client" , artifact = " bin" , target = " wasm32-unknown-unknown" }
83
+ modelfox_app_playground_client = { path = " routes/repos/_/models/_/playground/client" , artifact = " bin" , target = " wasm32-unknown-unknown" }
84
+ modelfox_app_production_class_metrics_client = { path = " routes/repos/_/models/_/production_metrics/class_metrics/client" , artifact = " bin" , target = " wasm32-unknown-unknown" }
85
+ modelfox_app_production_metrics_index_client = { path = " routes/repos/_/models/_/production_metrics/index/client" , artifact = " bin" , target = " wasm32-unknown-unknown" }
86
+ modelfox_app_production_prediction_client = { path = " routes/repos/_/models/_/production_predictions/predictions/_/client" , artifact = " bin" , target = " wasm32-unknown-unknown" }
87
+ modelfox_app_production_stats_column_client = { path = " routes/repos/_/models/_/production_stats/columns/_/client" , artifact = " bin" , target = " wasm32-unknown-unknown" }
88
+ modelfox_app_production_stats_index_client = { path = " routes/repos/_/models/_/production_stats/index/client" , artifact = " bin" , target = " wasm32-unknown-unknown" }
89
+ modelfox_app_training_class_metrics_client = { path = " routes/repos/_/models/_/training_metrics/class_metrics/client" , artifact = " bin" , target = " wasm32-unknown-unknown" }
90
+ modelfox_app_training_metrics_precision_recall_client = { path = " routes/repos/_/models/_/training_metrics/precision_recall/client" , artifact = " bin" , target = " wasm32-unknown-unknown" }
91
+ modelfox_app_training_metrics_roc_client = { path = " routes/repos/_/models/_/training_metrics/roc/client" , artifact = " bin" , target = " wasm32-unknown-unknown" }
92
+ modelfox_app_training_stats_column_client = { path = " routes/repos/_/models/_/training_stats/columns/_/client" , artifact = " bin" , target = " wasm32-unknown-unknown" }
93
+ modelfox_app_tuning_client = { path = " routes/repos/_/models/_/tuning/client" , artifact = " bin" , target = " wasm32-unknown-unknown" }
88
94
89
95
[dependencies ]
90
- anyhow = { version = " 1" , features = [" backtrace" ] }
91
- base64 = " 0.13"
92
- chrono = { version = " 0.4" , features = [" serde" ] }
93
- chrono-tz = { version = " 0.6" , features = [" serde" ] }
94
- clap = { version = " 3" , features = [" derive" ] }
95
- futures = " 0.3"
96
- glob = " 0.3"
97
- http = " 0.2"
98
- hyper = { version = " 0.14" , features = [" full" ] }
99
- lettre = { version = " 0.10.0-rc.2" , default-features = false , features = [" builder" , " hostname" , " smtp-transport" , " tokio1-rustls-tls" ] }
100
- ndarray = { version = " 0.15" , features = [" rayon" ] }
101
- num = " 0.4"
102
- once_cell = " 1"
103
- rand = " 0.8"
104
- rayon = " 1.5"
105
- reqwest = { version = " 0.11" , default-features = false , features = [" blocking" , " json" , " rustls-tls" ] }
106
- serde = { version = " 1" , features = [" derive" ] }
107
- serde_json = " 1"
108
- sha2 = " 0.10"
109
- sqlx = { version = " 0.5" , default-features = false , features = [" any" , " chrono" , " postgres" , " runtime-tokio-rustls" , " sqlite" ] }
110
- sunfish = " 0.7"
96
+ anyhow = { workspace = true }
97
+ base64 = { workspace = true }
98
+ chrono = { workspace = true }
99
+ chrono-tz = { workspace = true }
100
+ clap = { workspace = true }
101
+ futures = { workspace = true }
102
+ glob = { workspace = true }
103
+ http = { workspace = true }
104
+ hyper = { workspace = true }
105
+ lettre = { workspace = true }
106
+ ndarray = { workspace = true }
107
+ num = { workspace = true }
108
+ once_cell = { workspace = true }
109
+ rand = { workspace = true }
110
+ rayon = { workspace = true }
111
+ reqwest = { workspace = true }
112
+ serde = { workspace = true }
113
+ serde_json = { workspace = true }
114
+ sha2 = { workspace = true }
115
+ sqlx = { workspace = true }
116
+ sunfish = { workspace = true }
117
+ time = { workspace = true }
118
+ tokio = { workspace = true }
119
+ toml = { workspace = true }
120
+ tracing = { workspace = true }
121
+ url = { workspace = true }
122
+
123
+ modelfox_charts = { workspace = true }
124
+ modelfox_core = { workspace = true }
125
+ modelfox_id = { workspace = true }
126
+ modelfox_metrics = { workspace = true }
127
+ modelfox_model = { workspace = true }
128
+ modelfox_serve = { workspace = true }
129
+ modelfox_table = { workspace = true }
130
+ modelfox_zip = { workspace = true }
131
+
111
132
modelfox_app_context = { path = " context" }
112
133
modelfox_app_core = { path = " core" }
113
134
modelfox_app_layouts = { path = " layouts" }
114
135
modelfox_app_migrations = { path = " migrations" }
115
136
modelfox_app_monitor_event = { path = " monitor_event" }
116
- modelfox_charts = { path = " ../charts" }
117
- modelfox_core = { path = " ../core" }
118
- modelfox_id = { path = " ../id" }
119
- modelfox_metrics = { path = " ../metrics" }
120
- modelfox_model = { path = " ../model" }
121
- modelfox_serve = { path = " ../serve" }
122
- modelfox_table = { path = " ../table" }
123
- modelfox_zip = { path = " ../zip" }
124
- time = " 0.3"
125
- tokio = { version = " 1" , features = [" full" ] }
126
- toml = " 0.5"
127
- tracing = " 0.1"
128
- url = { version = " 2" , features = [" serde" ] }
129
137
130
138
modelfox_app_alerts_server = { path = " routes/repos/_/models/_/alerts/_/server" , optional = true }
131
139
modelfox_app_alerts_index_server = { path = " routes/repos/_/models/_/alerts/index/server" , optional = true }
0 commit comments