Skip to content

Commit a757c98

Browse files
nipunn1313Convex, Inc.
authored and
Convex, Inc.
committed
Remove path dependency from oss py_client (#32305)
It can't build with the path dep GitOrigin-RevId: 39b50d795faea138cfec215f50f0e2c1b6849b13
1 parent 90744a2 commit a757c98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Cargo.toml

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

1111
[dependencies]
12-
convex = { path = "../convex", version = "=0.9.0", default-features = false }
12+
convex = { version = "=0.9.0", default-features = false }
1313
futures = { version = "0.3" }
1414
parking_lot = { version = "0.12" }
1515
pyo3 = { features = [ "abi3", "abi3-py39" ], version = "0.23.3" }
@@ -19,7 +19,7 @@ tracing = { version = "0.1" }
1919
tracing-subscriber = { features = [ "env-filter" ], version = "0.3.17" }
2020

2121
[dev-dependencies]
22-
convex = { path = "../convex", version = "=0.9.0", default-features = false, features = [ "testing" ] }
22+
convex = { version = "=0.9.0", default-features = false, features = [ "testing" ] }
2323
tracing-subscriber = { features = [ "env-filter" ], version = "0.3.17" }
2424

2525
[build-dependencies]

0 commit comments

Comments
 (0)