Skip to content

Silas prepare for publishing 3 #1501

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pgml-sdks/pgml/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ version = "1.0.4"
edition = "2021"
authors = ["PosgresML <[email protected]>"]
homepage = "https://postgresml.org/"
repository = ""
repository = "https://github.com/postgresml/postgresml"
license = "MIT"
description = "The official pgml Rust SDK"
keywords = ["postgres", "machine learning", "vector databases", "embeddings"]

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

[dependencies]
# rust_bridge = {path = "../rust-bridge/rust-bridge", version = "0.1.0", optional = true }
rust_bridge = {git = "https://github.com/postgresml/postgresml", version = "0.1.0", optional = true }
rust_bridge = {path = "../rust-bridge/rust-bridge", version = "0.1.0", optional = true }
sqlx = { version = "0.7.3", features = [ "runtime-tokio-rustls", "postgres", "json", "time", "uuid"] }
serde_json = "1.0.9"
anyhow = "1.0.9"
Expand Down
2 changes: 2 additions & 0 deletions pgml-sdks/rust-bridge/rust-bridge-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
name = "rust_bridge_macros"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "The macros for the rust_bridge crate"

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

Expand Down
2 changes: 2 additions & 0 deletions pgml-sdks/rust-bridge/rust-bridge-traits/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
name = "rust_bridge_traits"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "The traits for the rust_bridge crate"

[dependencies]
neon = { version = "0.10", default-features = false, features = ["napi-6"] }
6 changes: 4 additions & 2 deletions pgml-sdks/rust-bridge/rust-bridge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
name = "rust_bridge"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "The rust_bridge"

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

[dependencies]
rust_bridge_traits = { path = "../rust-bridge-traits" }
rust_bridge_macros = { path = "../rust-bridge-macros" }
rust_bridge_traits = { path = "../rust-bridge-traits", version = "0.1.0" }
rust_bridge_macros = { path = "../rust-bridge-macros", version = "0.1.0" }