Skip to content

Commit

Permalink
fix: Rename crate influxdb_line_protocol to influxdb-line-protocol (
Browse files Browse the repository at this point in the history
#7244)

* fix: Rename crate `influxdb_line_protocol` to `influxdb-line-protocol`

* fix: hakari config

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
alamb and kodiakhq[bot] authored Mar 17, 2023
1 parent 2bc495b commit 28cb567
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .config/hakari.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ workspace-members = [
"influxdb_iox_client",
# influxdb_line_protocol is published as a standalone crate, so don't
# depend on workspace
"influxdb_line_protocol",
"influxdb-line-protocol",
"influxdb2_client",
"iox_data_generator",
# The garbage collector uses chrono-english which needlessly
Expand Down
34 changes: 17 additions & 17 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion data_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license.workspace = true

[dependencies]
croaring = "0.8.1"
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
influxdb-line-protocol = { path = "../influxdb_line_protocol" }
iox_time = { path = "../iox_time" }
observability_deps = { path = "../observability_deps" }
ordered-float = "3"
Expand Down
2 changes: 1 addition & 1 deletion influxdb_iox_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ bytes = "1.4"
client_util = { path = "../client_util" }
comfy-table = { version = "6.1", default-features = false}
futures-util = { version = "0.3" }
influxdb_line_protocol = { path = "../influxdb_line_protocol"}
influxdb-line-protocol = { path = "../influxdb_line_protocol"}
generated_types = { path = "../generated_types", default-features = false, features = ["data_types_conversions"] }
prost = "0.11"
rand = "0.8.3"
Expand Down
2 changes: 1 addition & 1 deletion influxdb_line_protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "influxdb_line_protocol"
name = "influxdb-line-protocol"
version = "1.0.0"
authors = ["InfluxDB IOx Project Developers"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion mutable_batch_lp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license.workspace = true

[dependencies]
hashbrown = { workspace = true }
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
influxdb-line-protocol = { path = "../influxdb_line_protocol" }
mutable_batch = { path = "../mutable_batch" }
schema = { path = "../schema" }
snafu = "0.7"
Expand Down
2 changes: 1 addition & 1 deletion parquet_to_line_protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license.workspace = true
[dependencies]
datafusion = { workspace = true }
datafusion_util = { path = "../datafusion_util" }
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
influxdb-line-protocol = { path = "../influxdb_line_protocol" }
futures = {version = "0.3"}
num_cpus = "1.15.0"
object_store = { version = "0.5.5" }
Expand Down
2 changes: 1 addition & 1 deletion router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ crossbeam-utils = "0.8.15"
[dev-dependencies]
assert_matches = "1.5"
criterion = { version = "0.4", default-features = false, features = ["async_tokio", "rayon"]}
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
influxdb-line-protocol = { path = "../influxdb_line_protocol" }
iox_tests = { path = "../iox_tests" }
once_cell = "1"
paste = "1.0.12"
Expand Down

0 comments on commit 28cb567

Please sign in to comment.