Skip to content

Commit a004598

Browse files
authored
Silas prepare for publishing 3 (#1501)
1 parent fd00bbf commit a004598

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

pgml-sdks/pgml/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ version = "1.0.4"
44
edition = "2021"
55
authors = ["PosgresML <team@postgresml.org>"]
66
homepage = "https://postgresml.org/"
7-
repository = ""
7+
repository = "https://github.com/postgresml/postgresml"
88
license = "MIT"
9+
description = "The official pgml Rust SDK"
910
keywords = ["postgres", "machine learning", "vector databases", "embeddings"]
1011

1112
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -14,8 +15,7 @@ name = "pgml"
1415
crate-type = ["lib", "cdylib"]
1516

1617
[dependencies]
17-
# rust_bridge = {path = "../rust-bridge/rust-bridge", version = "0.1.0", optional = true }
18-
rust_bridge = {git = "https://github.com/postgresml/postgresml", version = "0.1.0", optional = true }
18+
rust_bridge = {path = "../rust-bridge/rust-bridge", version = "0.1.0", optional = true }
1919
sqlx = { version = "0.7.3", features = [ "runtime-tokio-rustls", "postgres", "json", "time", "uuid"] }
2020
serde_json = "1.0.9"
2121
anyhow = "1.0.9"

pgml-sdks/rust-bridge/rust-bridge-macros/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
name = "rust_bridge_macros"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "MIT"
6+
description = "The macros for the rust_bridge crate"
57

68
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
79

pgml-sdks/rust-bridge/rust-bridge-traits/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
name = "rust_bridge_traits"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "MIT"
6+
description = "The traits for the rust_bridge crate"
57

68
[dependencies]
79
neon = { version = "0.10", default-features = false, features = ["napi-6"] }

pgml-sdks/rust-bridge/rust-bridge/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22
name = "rust_bridge"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "MIT"
6+
description = "The rust_bridge"
57

68
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
79

810
[dependencies]
9-
rust_bridge_traits = { path = "../rust-bridge-traits" }
10-
rust_bridge_macros = { path = "../rust-bridge-macros" }
11+
rust_bridge_traits = { path = "../rust-bridge-traits", version = "0.1.0" }
12+
rust_bridge_macros = { path = "../rust-bridge-macros", version = "0.1.0" }

0 commit comments

Comments
 (0)