Skip to content

Commit

Permalink
docs: add crate metadata
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Chi <[email protected]>
  • Loading branch information
skyzh committed Nov 4, 2024
1 parent 7005948 commit 410ec0d
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 11 deletions.
8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,11 @@ members = [
"optd-datafusion-repr-adv-cost",
]
resolver = "2"

[workspace.package]
version = "0.1.0"
edition = "2021"
homepage = "https://github.com/cmu-db/optd"
keywords = ["sql", "database", "optimizer", "datafusion"]
license = "MIT"
repository = "https://github.com/cmu-db/optd"
8 changes: 6 additions & 2 deletions optd-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "optd-core"
version = "0.1.0"
edition = "2021"
version = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

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

Expand Down
8 changes: 6 additions & 2 deletions optd-datafusion-bridge/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "optd-datafusion-bridge"
version = "0.1.0"
edition = "2021"
version = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

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

Expand Down
8 changes: 6 additions & 2 deletions optd-datafusion-repr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "optd-datafusion-repr"
version = "0.1.0"
edition = "2021"
version = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

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

Expand Down
14 changes: 9 additions & 5 deletions optd-gungnir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "optd-gungnir"
version = "0.1.0"
edition = "2021"
version = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

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

Expand All @@ -10,8 +14,8 @@ itertools = "0.11"
rand = "0.8"
crossbeam = "0.8"
lazy_static = "1.4"
serde = {version = "1.0", features = ["derive"]}
serde_with = {version = "3.7.0", features = ["json"]}
serde = { version = "1.0", features = ["derive"] }
serde_with = { version = "3.7.0", features = ["json"] }
ordered-float = "4"
optd-core = { path = "../optd-core" }
hashbrown = { version = "0.14", features = ["serde"] }
hashbrown = { version = "0.14", features = ["serde"] }

0 comments on commit 410ec0d

Please sign in to comment.