Skip to content

Commit bc0f1f9

Browse files
committed
update
1 parent d7279db commit bc0f1f9

4 files changed

Lines changed: 7 additions & 23 deletions

File tree

Cargo.lock

Lines changed: 0 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ path = "src/main.rs"
2020

2121

2222
[dependencies]
23-
tokio = { version = "1.0", features = ["full"] }
23+
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "sync", "time", "net", "signal"] }
2424
serde = { version = "1.0", features = ["derive"] }
2525
serde_yaml = "0.9"
2626
serde_json = "1.0"
2727
uuid = { version = "1.0", features = ["v4"] }
2828
log = "0.4"
2929
tracing = "0.1"
30-
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "chrono"] }
30+
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
3131
tracing-appender = "0.2"
3232
anyhow = "1.0"
3333
thiserror = "2"
@@ -67,9 +67,7 @@ datafusion-common = {git = 'https://github.com/FunctionStream/datafusion', branc
6767
datafusion-execution = {git = 'https://github.com/FunctionStream/datafusion', branch = '48.0.1/fs'}
6868
datafusion-expr = {git = 'https://github.com/FunctionStream/datafusion', branch = '48.0.1/fs'}
6969
datafusion-physical-expr = {git = 'https://github.com/FunctionStream/datafusion', branch = '48.0.1/fs'}
70-
datafusion-physical-plan = {git = 'https://github.com/FunctionStream/datafusion', branch = '48.0.1/fs'}
7170
datafusion-proto = {git = 'https://github.com/FunctionStream/datafusion', branch = '48.0.1/fs'}
72-
datafusion-functions = {git = 'https://github.com/FunctionStream/datafusion', branch = '48.0.1/fs'}
7371

7472
sqlparser = { git = "https://github.com/FunctionStream/sqlparser-rs", branch = "0.58.0/fs" }
7573

cli/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ arrow-schema = "52"
1414
comfy-table = "7"
1515
protocol = { path = "../../protocol" }
1616
clap = { version = "4.5", features = ["derive"] }
17-
tokio = { version = "1.0", features = ["full", "signal"] }
17+
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "sync", "signal"] }
1818
tonic = { version = "0.12", features = ["default"] }
1919
rustyline = { version = "14.0", features = ["with-dirs"] }
2020

protocol/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ description = "Protocol Buffers protocol definitions for function stream"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/your-username/rust-function-stream"
88

9+
# prost/serde are required by generated modules under `generated/`; machete does not scan those paths.
10+
[package.metadata.cargo-machete]
11+
ignored = ["prost", "serde"]
12+
913
[dependencies]
1014
prost = "0.13"
1115
tonic = { version = "0.12", features = ["default"] }
1216
serde = { version = "1.0", features = ["derive"] }
13-
log = "0.4"
1417

1518
[build-dependencies]
1619
tonic-build = "0.12"

0 commit comments

Comments
 (0)