Skip to content

Commit 0be9fb3

Browse files
authored
feat: remove deprecated codes & update wasm binding (#530)
* feat: remove deprecated codes & update wasm binding * chore: style & clippy
1 parent a5dd80a commit 0be9fb3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+111
-8565
lines changed

Cargo.lock

Lines changed: 25 additions & 513 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,19 @@
11
[workspace]
22

33
members = [
4-
"apps/doc_merger",
5-
"apps/keck",
6-
"libs/jwst",
7-
# "libs/jwst-binding/jwst-ffi",
8-
"libs/jwst-binding/jwst-jni",
9-
# "libs/jwst-binding/jwst-py",
10-
"libs/jwst-binding/jwst-swift",
11-
"libs/jwst-binding/jwst-swift/jwst-swift-integrate",
12-
# "libs/jwst-binding/jwst-wasm",
13-
"libs/jwst-codec",
14-
"libs/jwst-codec-utils",
15-
"libs/jwst-core",
16-
"libs/jwst-logger",
17-
"libs/jwst-rpc",
18-
"libs/jwst-storage",
19-
"libs/jwst-storage/src/migration",
4+
"apps/doc_merger",
5+
"apps/keck",
6+
"libs/jwst-binding/jwst-jni",
7+
"libs/jwst-binding/jwst-swift",
8+
"libs/jwst-binding/jwst-swift/jwst-swift-integrate",
9+
"libs/jwst-binding/jwst-wasm",
10+
"libs/jwst-codec",
11+
"libs/jwst-codec-utils",
12+
"libs/jwst-core",
13+
"libs/jwst-logger",
14+
"libs/jwst-rpc",
15+
"libs/jwst-storage",
16+
"libs/jwst-storage/src/migration",
2017
]
2118
resolver = "2"
2219

apps/cloud/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ serde = { version = "1.0.155", features = ["derive"] }
2626
serde_json = "1.0.94"
2727
tempfile = "3.4.0"
2828
tokio = { version = "1.26.0", features = [
29-
"macros",
30-
"rt-multi-thread",
31-
"signal",
29+
"macros",
30+
"rt-multi-thread",
31+
"signal",
3232
] }
3333
tower-http = { version = "0.4.0", features = [
34-
"auth",
35-
"cors",
36-
"propagate-header",
37-
"request-id",
38-
"trace",
34+
"auth",
35+
"cors",
36+
"propagate-header",
37+
"request-id",
38+
"trace",
3939
] }
4040
utoipa = { version = "3.1.0", features = ["axum_extras"] }
4141
form_urlencoded = "1.1.0"

apps/keck/src/server/api/doc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ pub fn doc_apis(router: Router) -> Router {
7070
#[cfg(feature = "schema")]
7171
{
7272
let mut openapi = ApiDoc::openapi();
73-
openapi.info.description = Some(vec![README, DISTINCTIVE_FEATURES].join("\n"));
73+
openapi.info.description = Some([README, DISTINCTIVE_FEATURES].join("\n"));
7474

7575
let name = "jwst";
7676
if cfg!(debug_assertions) || std::env::var("JWST_DEV").is_ok() {

libs/cloud-database/Cargo.toml

Lines changed: 0 additions & 36 deletions
This file was deleted.

libs/cloud-database/migration/Cargo.toml

Lines changed: 0 additions & 17 deletions
This file was deleted.

libs/cloud-database/migration/README.md

Lines changed: 0 additions & 41 deletions
This file was deleted.

libs/cloud-database/migration/src/lib.rs

Lines changed: 0 additions & 25 deletions
This file was deleted.

libs/cloud-database/migration/src/m20220101_000001_create_user_table.rs

Lines changed: 0 additions & 45 deletions
This file was deleted.

libs/cloud-database/migration/src/m20230101_000002_create_google_user_table.rs

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)