Skip to content

Commit

Permalink
Include README in Cargo.toml (#936)
Browse files Browse the repository at this point in the history
  • Loading branch information
robert3005 authored Sep 26, 2024
1 parent b73e6b8 commit 06879bc
Show file tree
Hide file tree
Showing 31 changed files with 48 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ include = [
]
edition = "2021"
rust-version = "1.81"
readme = "README.md"

[workspace.dependencies]
libfuzzer-sys = "0.4"
Expand Down
1 change: 1 addition & 0 deletions bench-vortex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = "README.md"

[lints.rust]
warnings = "deny"
Expand Down
1 change: 1 addition & 0 deletions encodings/alp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions encodings/bytebool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[lints]
workspace = true
Expand Down
9 changes: 8 additions & 1 deletion encodings/datetime-parts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,15 @@
name = "vortex-datetime-parts"
description = "Vortex physical encoding that compresses temporal components individually"
version = { workspace = true }
edition = "2021"
homepage = { workspace = true }
repository = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions encodings/dict/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[dependencies]
ahash = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions encodings/fastlanes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions encodings/fsst/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = "README.md"

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions encodings/roaring/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[dependencies]
arrow-buffer = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions encodings/runend-bool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[dependencies]
arrow-buffer = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions encodings/runend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[dependencies]
itertools = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions encodings/zigzag/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[dependencies]
serde = { workspace = true, features = ["derive"] }
Expand Down
13 changes: 11 additions & 2 deletions fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
[package]
name = "vortex-fuzz"
version = "0.0.0"
publish = false
edition = { workspace = true }
description = "Fuzzer for vortex arrays"
version = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = "README.md"


[package.metadata]
cargo-fuzz = true
Expand Down
2 changes: 1 addition & 1 deletion pyvortex/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "vortex-array"
# Maturin copies these, at build time, from Cargo.toml.
# https://github.com/PyO3/maturin/blob/main/src/metadata.rs#L127-L129
dyanmic = ["version", "description", "authors"]
dynamic = ["version", "description", "authors"]
readme = "README.md"
dependencies = [
"pyarrow>=15.0.0",
Expand Down
1 change: 1 addition & 0 deletions vortex-array/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[lib]
name = "vortex"
Expand Down
1 change: 0 additions & 1 deletion vortex-array/README.md

This file was deleted.

1 change: 1 addition & 0 deletions vortex-buffer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = "README.md"

[features]
flexbuffers = ["dep:flexbuffers"]
Expand Down
1 change: 1 addition & 0 deletions vortex-datafusion/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[lib]
name = "vortex_datafusion"
Expand Down
1 change: 1 addition & 0 deletions vortex-datetime-dtype/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[dependencies]
arrow-schema = { workspace = true, optional = true }
Expand Down
1 change: 1 addition & 0 deletions vortex-dtype/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[lib]
name = "vortex_dtype"
Expand Down
1 change: 1 addition & 0 deletions vortex-error/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[lib]
name = "vortex_error"
Expand Down
1 change: 1 addition & 0 deletions vortex-expr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = "README.md"

[lib]
name = "vortex_expr"
Expand Down
1 change: 1 addition & 0 deletions vortex-flatbuffers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = "README.md"

[features]
dtype = []
Expand Down
3 changes: 1 addition & 2 deletions vortex-flatbuffers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
This crate contains Flatbuffers definitions that can be used to convert other crates in this workspace back
and forth into Flatbuffers messages.


## Regenerating the bindings

Run the `./regen.sh` script. Be sure that you have the `flatc` utility installed before doing so.
Run the `cargo xtask generate-fbs` script. Be sure that you have the `flatc` utility installed before doing so.
1 change: 1 addition & 0 deletions vortex-proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[dependencies]
prost = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions vortex-sampling-compressor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[dependencies]
arbitrary = { workspace = true, optional = true }
Expand Down
1 change: 1 addition & 0 deletions vortex-scalar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[dependencies]
arbitrary = { workspace = true, optional = true }
Expand Down
1 change: 1 addition & 0 deletions vortex-schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }

[dependencies]
vortex-dtype = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions vortex-serde/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = "README.md"

[dependencies]
ahash = { workspace = true }
Expand Down
2 changes: 2 additions & 0 deletions xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "xtask"
# This is an internal crate for project developers
publish = false
description = "Tasks for repo management"
version = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
Expand All @@ -11,6 +12,7 @@ keywords = { workspace = true }
include = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
readme = "README.md"

[dependencies]
anyhow = { workspace = true }
Expand Down

0 comments on commit 06879bc

Please sign in to comment.