Skip to content

Commit

Permalink
unformat cargo toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Quinn committed Dec 28, 2024
1 parent 3f32656 commit 936d791
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 34 deletions.
55 changes: 22 additions & 33 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,10 @@ clap = { version = "4.5", features = ["derive"] }
color-eyre = "0.6.2"
console-subscriber = "0.4"
data-encoding = "2.3"
derive_more = { version = "0.99", default-features = false, features = [
"display",
"from",
] }
ed25519-dalek = { version = "2.1.1", default-features = false, features = [
"std",
] }
derive_more = { version = "0.99", default-features = false, features = [ "display", "from", ] }
ed25519-dalek = { version = "2.1.1", default-features = false, features = [ "std", ] }
eyre = "0.6.12"
ftdi-embedded-hal = { version = "0.22.0", features = [
"libftd2xx",
"libftd2xx-static",
] }
ftdi-embedded-hal = { version = "0.22.0", features = [ "libftd2xx", "libftd2xx-static", ] }
futures = "0.3.30"
hex-literal = "0.4.1"
http = "1.2.0"
Expand All @@ -78,10 +70,7 @@ libc = "0.2.153"
nix = { version = "0.28", default-features = false, features = [] }
prost = "0.13.4"
prost-build = "0.13.4"
reqwest = { version = "0.12.9", default-features = false, features = [
"rustls-tls",
"stream",
] }
reqwest = { version = "0.12.9", default-features = false, features = [ "rustls-tls", "stream", ] }
ring = "0.16"
rustix = "0.38.37"
secrecy = "0.8"
Expand All @@ -101,35 +90,35 @@ zbus = { version = "4.4.0", default-features = false, features = ["tokio"] }
zbus_systemd = "0.25600.0"
zenoh = "1.0.3"

can-rs.path = "can"
orb-attest-dbus.path = "attest/dbus"
orb-build-info.path = "build-info"
orb-const-concat.path = "const-concat"
orb-header-parsing.path = "header-parsing"
orb-mcu-interface.path = "mcu-interface"
orb-relay-client.path = "relay-client"
orb-security-utils.path = "security-utils"
orb-slot-ctrl.path = "slot-ctrl"
orb-telemetry.path = "telemetry"
can-rs.path = "can"
orb-attest-dbus.path = "attest/dbus"
orb-build-info.path = "build-info"
orb-const-concat.path = "const-concat"
orb-header-parsing.path = "header-parsing"
orb-mcu-interface.path = "mcu-interface"
orb-relay-client.path = "relay-client"
orb-security-utils.path = "security-utils"
orb-slot-ctrl.path = "slot-ctrl"
orb-telemetry.path = "telemetry"
orb-update-agent-core.path = "update-agent/core"
orb-zbus-proxies.path = "zbus-proxies"
seek-camera.path = "seek-camera/wrapper"
orb-zbus-proxies.path = "zbus-proxies"
seek-camera.path = "seek-camera/wrapper"

[workspace.dependencies.orb-messages]
git = "https://github.com/worldcoin/orb-messages"
rev = "787ab78581b705af0946bcfe3a0453b64af2193f"

[workspace.dependencies.orb-relay-messages]
git = "https://github.com/worldcoin/orb-relay-messages.git"
rev = "6de97229c26d46eb600b1dd288b5325830ed816b"
git = "https://github.com/worldcoin/orb-relay-messages.git"
rev = "6de97229c26d46eb600b1dd288b5325830ed816b"
features = ["client"]

[workspace.dependencies.nusb]
git = "https://github.com/kevinmehall/nusb"
rev = "3ec3508324cdd01ca288b91ddcb2f92fd6a6f813"

[workspace.dependencies.gpt]
git = "https://github.com/worldcoin/gpt"
git = "https://github.com/worldcoin/gpt"
branch = "take-partition"

# increase the optimization of third party crates in dev builds.
Expand All @@ -139,6 +128,6 @@ branch = "take-partition"
# What we use when producing artifacts to distribute
[profile.artifact]
inherits = "release"
lto = true
strip = true
debug = false
lto = true
strip = true
debug = false
2 changes: 1 addition & 1 deletion relay-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "orb-relay-client"
version = "0.1.0"
edition = "2024"
edition = "2021"
publish = false

[dependencies]
Expand Down

0 comments on commit 936d791

Please sign in to comment.