Skip to content

Commit

Permalink
fix: use traversal-excludes to remove OpenDAL in workspace hack (#7853)
Browse files Browse the repository at this point in the history

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
wcy-fdu and mergify[bot] authored Feb 13, 2023
1 parent d0b90fb commit 45b5e6b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 19 deletions.
5 changes: 1 addition & 4 deletions .config/hakari.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,7 @@ platforms = [
# exact-versions = true

[traversal-excludes]
workspace-members = ["workspace-config"]

[final-excludes]
workspace-members = ["risingwave_object_store"]
workspace-members = ["workspace-config", "risingwave_object_store"]
third-party = [
{ name = "opendal" },
]
6 changes: 2 additions & 4 deletions 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 ci/scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ cargo sort --check --workspace

echo "--- Rust cargo-hakari check"
cargo hakari generate --diff
cargo hakari verify

echo "--- Rust format check"
cargo fmt --all -- --check
Expand Down
19 changes: 8 additions & 11 deletions src/workspace-hack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ crossbeam-channel = { version = "0.5" }
crossbeam-deque = { version = "0.8" }
crossbeam-epoch = { version = "0.9" }
crossbeam-utils = { version = "0.8" }
digest = { version = "0.10", features = ["mac", "std"] }
either = { version = "1" }
fail = { version = "0.5", default-features = false, features = ["failpoints"] }
fixedbitset = { version = "0.4" }
Expand Down Expand Up @@ -63,7 +64,6 @@ lock_api = { version = "0.4", default-features = false, features = ["arc_lock"]
log = { version = "0.4", default-features = false, features = ["kv_unstable", "std"] }
madsim-tokio = { version = "0.2", default-features = false, features = ["fs", "io-util", "macros", "net", "process", "rt", "rt-multi-thread", "signal", "sync", "time", "tracing"] }
memchr = { version = "2" }
mime_guess = { version = "2" }
miniz_oxide = { version = "0.6", default-features = false, features = ["with-alloc"] }
multimap = { version = "0.8" }
num-bigint = { version = "0.4" }
Expand All @@ -81,17 +81,16 @@ rand = { version = "0.8", features = ["small_rng"] }
rand_core = { version = "0.6", default-features = false, features = ["std"] }
regex = { version = "1" }
regex-syntax = { version = "0.6" }
reqwest = { version = "0.11", features = ["json", "multipart", "rustls-tls-native-roots", "stream"] }
rustls = { version = "0.20" }
reqwest = { version = "0.11", features = ["json"] }
ring = { version = "0.16", features = ["std"] }
scopeguard = { version = "1" }
serde = { version = "1", features = ["alloc", "derive", "rc"] }
smallvec = { version = "1", default-features = false, features = ["serde"] }
socket2 = { version = "0.4", default-features = false, features = ["all"] }
stable_deref_trait = { version = "1" }
strum = { version = "0.24", features = ["derive"] }
time = { version = "0.3", features = ["formatting", "local-offset", "macros", "parsing", "serde"] }
time = { version = "0.3", features = ["formatting", "local-offset", "macros", "parsing"] }
tokio = { version = "1", features = ["fs", "io-std", "io-util", "macros", "net", "parking_lot", "process", "rt-multi-thread", "signal", "stats", "sync", "time", "tracing"] }
tokio-rustls = { version = "0.23" }
tokio-stream = { version = "0.1", features = ["net"] }
tokio-util = { version = "0.7", features = ["codec", "io"] }
tonic = { version = "0.8", features = ["gzip", "tls-webpki-roots"] }
Expand Down Expand Up @@ -128,6 +127,7 @@ crossbeam-channel = { version = "0.5" }
crossbeam-deque = { version = "0.8" }
crossbeam-epoch = { version = "0.9" }
crossbeam-utils = { version = "0.8" }
digest = { version = "0.10", features = ["mac", "std"] }
either = { version = "1" }
fail = { version = "0.5", default-features = false, features = ["failpoints"] }
fixedbitset = { version = "0.4" }
Expand Down Expand Up @@ -156,7 +156,6 @@ lock_api = { version = "0.4", default-features = false, features = ["arc_lock"]
log = { version = "0.4", default-features = false, features = ["kv_unstable", "std"] }
madsim-tokio = { version = "0.2", default-features = false, features = ["fs", "io-util", "macros", "net", "process", "rt", "rt-multi-thread", "signal", "sync", "time", "tracing"] }
memchr = { version = "2" }
mime_guess = { version = "2" }
miniz_oxide = { version = "0.6", default-features = false, features = ["with-alloc"] }
multimap = { version = "0.8" }
num-bigint = { version = "0.4" }
Expand All @@ -175,19 +174,17 @@ rand = { version = "0.8", features = ["small_rng"] }
rand_core = { version = "0.6", default-features = false, features = ["std"] }
regex = { version = "1" }
regex-syntax = { version = "0.6" }
reqwest = { version = "0.11", features = ["json", "multipart", "rustls-tls-native-roots", "stream"] }
rustls = { version = "0.20" }
reqwest = { version = "0.11", features = ["json"] }
ring = { version = "0.16", features = ["std"] }
scopeguard = { version = "1" }
serde = { version = "1", features = ["alloc", "derive", "rc"] }
smallvec = { version = "1", default-features = false, features = ["serde"] }
socket2 = { version = "0.4", default-features = false, features = ["all"] }
stable_deref_trait = { version = "1" }
strum = { version = "0.24", features = ["derive"] }
syn = { version = "1", features = ["extra-traits", "full", "visit", "visit-mut"] }
time = { version = "0.3", features = ["formatting", "local-offset", "macros", "parsing", "serde"] }
time-macros = { version = "0.2", default-features = false, features = ["formatting", "parsing", "serde"] }
time = { version = "0.3", features = ["formatting", "local-offset", "macros", "parsing"] }
tokio = { version = "1", features = ["fs", "io-std", "io-util", "macros", "net", "parking_lot", "process", "rt-multi-thread", "signal", "stats", "sync", "time", "tracing"] }
tokio-rustls = { version = "0.23" }
tokio-stream = { version = "0.1", features = ["net"] }
tokio-util = { version = "0.7", features = ["codec", "io"] }
tonic = { version = "0.8", features = ["gzip", "tls-webpki-roots"] }
Expand Down

0 comments on commit 45b5e6b

Please sign in to comment.