Skip to content

Commit

Permalink
docs: add crate metadata (#218)
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Chi <[email protected]>
  • Loading branch information
skyzh authored Nov 4, 2024
1 parent 7005948 commit c8e4765
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 12 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"
9 changes: 7 additions & 2 deletions optd-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
[package]
name = "optd-core"
version = "0.1.0"
edition = "2021"
description = "core library for optd"
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
9 changes: 7 additions & 2 deletions optd-datafusion-bridge/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
[package]
name = "optd-datafusion-bridge"
version = "0.1.0"
edition = "2021"
description = "datafusion bridge for optd"
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
9 changes: 7 additions & 2 deletions optd-datafusion-repr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
[package]
name = "optd-datafusion-repr"
version = "0.1.0"
edition = "2021"
description = "datafusion plan representation for optd"
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
17 changes: 11 additions & 6 deletions optd-gungnir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
[package]
name = "optd-gungnir"
version = "0.1.0"
edition = "2021"
description = "statistics for optd"
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 +15,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"] }
optd-core = { path = "../optd-core", version = "0.1.0" }
hashbrown = { version = "0.14", features = ["serde"] }

0 comments on commit c8e4765

Please sign in to comment.