Skip to content

Commit

Permalink
Temporarily override cxx dependency with fork
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-opp committed Feb 28, 2024
1 parent e7f5d47 commit c479b7b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
20 changes: 8 additions & 12 deletions Cargo.lock

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

6 changes: 4 additions & 2 deletions apis/c++/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ ros2-bridge = [
]

[dependencies]
cxx = "1.0.73"
# cxx = "1.0.73"
cxx = { git = "https://github.com/phil-opp/cxx.git", branch = "use-correct-methods" }
dora-node-api = { workspace = true }
eyre = "0.6.8"
dora-ros2-bridge = { workspace = true, optional = true }
Expand All @@ -33,7 +34,8 @@ serde = { version = "1.0.164", features = ["derive"], optional = true }
serde-big-array = { version = "0.5.1", optional = true }

[build-dependencies]
cxx-build = "1.0.73"
# cxx-build = "1.0.73"
cxx-build = { git = "https://github.com/phil-opp/cxx.git", branch = "use-correct-methods" }
dora-ros2-bridge-msg-gen = { workspace = true, optional = true }
rust-format = { version = "0.3.4", features = [
"pretty_please",
Expand Down
6 changes: 4 additions & 2 deletions apis/c++/operator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ license.workspace = true
crate-type = ["staticlib"]

[dependencies]
cxx = "1.0.73"
# cxx = "1.0.73"
cxx = { git = "https://github.com/phil-opp/cxx.git", branch = "use-correct-methods" }
dora-operator-api = { workspace = true }

[build-dependencies]
cxx-build = "1.0.73"
# cxx-build = "1.0.73"
cxx-build = { git = "https://github.com/phil-opp/cxx.git", branch = "use-correct-methods" }

0 comments on commit c479b7b

Please sign in to comment.