-
Notifications
You must be signed in to change notification settings - Fork 591
fix: remove unused deps in core #6075
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
Open
JackDrogon
wants to merge
1
commit into
apache:main
Choose a base branch
from
JackDrogon:fix/remove_unused_deps
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -154,7 +154,7 @@ services-gcs = [ | |
services-gdrive = ["internal-path-cache"] | ||
services-ghac = ["dep:ghac", "dep:prost", "services-azblob"] | ||
services-github = [] | ||
services-gridfs = ["dep:mongodb", "dep:mongodb-internal-macros"] | ||
services-gridfs = ["dep:mongodb"] | ||
services-hdfs = ["dep:hdrs"] | ||
services-hdfs-native = ["hdfs-native"] | ||
services-http = [] | ||
|
@@ -168,7 +168,7 @@ services-memcached = ["dep:bb8"] | |
services-memory = [] | ||
services-mini-moka = ["dep:mini-moka"] | ||
services-moka = ["dep:moka"] | ||
services-mongodb = ["dep:mongodb", "dep:mongodb-internal-macros"] | ||
services-mongodb = ["dep:mongodb"] | ||
services-monoiofs = ["dep:monoio", "dep:flume"] | ||
services-mysql = ["dep:sqlx", "sqlx?/mysql"] | ||
services-nebula-graph = ["dep:rust-nebula", "dep:bb8", "dep:snowflaked"] | ||
|
@@ -312,7 +312,6 @@ mini-moka = { version = "0.10", optional = true } | |
moka = { version = "0.12", optional = true, features = ["future", "sync"] } | ||
# for services-mongodb | ||
mongodb = { version = "3.2.2", optional = true } | ||
mongodb-internal-macros = { version = "3.2.2", optional = true } | ||
# for services-sftp | ||
openssh = { version = "0.11.0", optional = true } | ||
openssh-sftp-client = { version = "0.15.2", optional = true, features = [ | ||
|
@@ -414,23 +413,18 @@ tokio = { version = "1.27", features = ["time"] } | |
uuid = { version = "1.14", features = ["serde", "v4", "js"] } | ||
|
||
[dev-dependencies] | ||
criterion = { version = "0.5", features = ["async", "async_tokio"] } | ||
divan = { version = "0.1" } | ||
dotenvy = "0.15" | ||
fastrace = { version = "0.7", features = ["enable"] } | ||
fastrace-jaeger = "0.7" | ||
libtest-mimic = "0.8" | ||
opentelemetry = { version = "0.29.0", default-features = false, features = [ | ||
"trace", | ||
] } | ||
opentelemetry-otlp = { version = "0.29.0", features = ["grpc-tonic"] } | ||
opentelemetry_sdk = { version = "0.29.0", features = ["rt-tokio"] } | ||
pretty_assertions = "1" | ||
rand = "0.8" | ||
sha2 = "0.10" | ||
size = "0.4" | ||
tokio = { version = "1.27", features = ["fs", "macros", "rt-multi-thread"] } | ||
tracing-opentelemetry = "0.30.0" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ditto There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ditto |
||
tracing-subscriber = { version = "0.3", features = [ | ||
"env-filter", | ||
"tracing-log", | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe this is needed for tracing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no releated code(just commentted example code use it) use it, if u need, u just import it in high level crate.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the doctest is marked as
no_run
, but run in ci🤔There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
make sense
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I knew, no_run mark just let ci not run the code, but compile it. I will fix it