Skip to content

Commit 97d1877

Browse files
committed
Upgrade
1 parent 8060fea commit 97d1877

File tree

11 files changed

+70
-73
lines changed

11 files changed

+70
-73
lines changed

Cargo.lock

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

core/api-option/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ version = "0.1.0"
44
edition = "2024"
55

66
[dependencies]
7-
serde = { version = "1.0.218", features = ["derive"] }
8-
serde_json = "1.0.139"
9-
once_cell = "1.20.3"
7+
serde = { version = "1.0.219", features = ["derive"] }
8+
serde_json = "1.0.140"
9+
once_cell = "1.21.3"

core/api/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
serde = { version = "1.0.218", features = ["derive"] }
8-
serde_json = "1.0.139"
9-
once_cell = "1.20.3"
7+
serde = { version = "1.0.219", features = ["derive"] }
8+
serde_json = "1.0.140"
9+
once_cell = "1.21.3"
1010
model = { path = "../model" }
1111
schema = { path = "../schema" }

core/model/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.1.0"
44
edition = "2024"
55

66
[dependencies]
7-
serde = { version = "1.0.218", features = ["derive"] }
8-
serde_json = "1.0.139"
9-
once_cell = "1.20.3"
7+
serde = { version = "1.0.219", features = ["derive"] }
8+
serde_json = "1.0.140"
9+
once_cell = "1.21.3"
1010
schema = { path = "../schema" }
1111
api-option = { path = "../api-option" }

core/schema/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ version = "0.1.0"
44
edition = "2024"
55

66
[dependencies]
7-
serde = { version = "1.0.218", features = ["derive"] }
8-
serde_json = "1.0.139"
9-
once_cell = "1.20.3"
7+
serde = { version = "1.0.219", features = ["derive"] }
8+
serde_json = "1.0.140"
9+
once_cell = "1.21.3"

libs/python/core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ name = "devup_api_core"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
once_cell = "1.20.3"
13-
pyo3 = { version = "0.23.3", features = ["experimental-inspect"] }
12+
once_cell = "1.21.3"
13+
pyo3 = { version = "0.24.1", features = ["experimental-inspect"] }
1414
api = { path = "../../../core/api" }
1515
utils = { path = "../../../core/utils" }
1616
model = { path = "../../../core/model" }
1717
schema = { path = "../../../core/schema" }
18-
pathdiff = "0.2.1"
18+
pathdiff = "0.2.3"

libs/python/core/src/py_utils.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,8 @@ pub fn get_cwd() -> PyResult<String> {
3939
pub fn convert_to_route_path(path: &str) -> String {
4040
let mut result = path.replace("\\", "/");
4141

42-
if result.starts_with("./") {
43-
result = result[2..].to_string();
44-
}
45-
if result.starts_with(".\\") {
46-
result = result[2..].to_string();
42+
if result.starts_with(".") {
43+
result = result[1..].to_string();
4744
}
4845

4946
if result.starts_with("/") {

sql/libs/node/mysql/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ crate-type = ["cdylib"]
99
[dependencies]
1010
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
1111
devup_node_sql_pool = { path = "../pool" }
12-
napi = { version = "2.12.2", default-features = false, features = ["napi4", "tokio_rt"] }
13-
napi-derive = "2.12.2"
12+
napi = { version = "2.16.17", default-features = false, features = ["napi4", "tokio_rt"] }
13+
napi-derive = "2.16.13"
1414
sqlx = { version = "0.8.3", features = ["mysql"] }
1515
[build-dependencies]
16-
napi-build = "2.0.1"
16+
napi-build = "2.1.6"
1717

1818
[profile.release]
1919
lto = true

sql/libs/node/pool/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ version = "0.0.1"
66
[dependencies]
77
devup_database = { path = "../../../core/devup_database" }
88
sqlx = { version = "0.8.3", features = ["runtime-tokio"] }
9-
napi = { version = "2.12.2", default-features = false, features = ["napi4"] }
10-
napi-derive = "2.12.2"
9+
napi = { version = "2.16.17", default-features = false, features = ["napi4"] }
10+
napi-derive = "2.16.13"

sql/libs/node/postgres/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ crate-type = ["cdylib"]
99
[dependencies]
1010
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
1111
devup_node_sql_pool = { path = "../pool" }
12-
napi = { version = "2.12.2", default-features = false, features = ["napi4", "tokio_rt"] }
13-
napi-derive = "2.12.2"
12+
napi = { version = "2.16.17", default-features = false, features = ["napi4", "tokio_rt"] }
13+
napi-derive = "2.16.13"
1414
sqlx = { version = "0.8.3", features = ["postgres"] }
1515
[build-dependencies]
16-
napi-build = "2.0.1"
16+
napi-build = "2.1.6"
1717

1818
[profile.release]
1919
lto = true

0 commit comments

Comments
 (0)