Skip to content

Commit

Permalink
Remove obsolete dependency declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
sophokles73 committed Feb 13, 2024
1 parent a7849b4 commit 6ed1ba3
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions components/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,7 @@
# SPDX-License-Identifier: Apache-2.0

[workspace]
members = [
"fms-consumer",
"fms-forwarder",
"fms-server",
"influx-client",
]
members = ["fms-consumer", "fms-forwarder", "fms-server", "influx-client"]
resolver = "2"

[workspace.package]
Expand All @@ -44,7 +39,6 @@ fms-proto = { path = "fms-proto" }
influx-client = { path = "influx-client", default-features = false }
influxrs = { version = "2.0" }
log = { version = "0.4" }
openssl-sys = { version = "0.9.92", default-features = false }
protobuf = { version = "3" }
protobuf-codegen = { version = "3" }
protoc-bin-vendored = { version = "3" }
Expand All @@ -58,9 +52,8 @@ tonic = { version = "0.10", default-features = false }
tonic-build = { version = "0.10", default-features = false }

[profile.release]
lto = true # Link time optimization (dead code removal etc...)
lto = true # Link time optimization (dead code removal etc...)
opt-level = "s"
codegen-units = 1
incremental = false
strip = true

0 comments on commit 6ed1ba3

Please sign in to comment.