-
I want to work on the two repsitories at the same time. Seems like a pretty essential thing for development? But I could not find documentation for how to do it (dev-docs nor GitHub issues/discussions). I have two git checkouts of both I thought I can just patch [dependencies]
abscissa_core = { version = "0.8.1", default-features = false, features = ["application"] }
-rustic_backend = { version = "0.5.2", features = ["cli"] }
-rustic_core = { version = "0.7.2", features = ["cli"] }
+rustic_backend = { path = "../rustic_core/crates/backend", features = ["cli"] }
+rustic_core = { path = "../rustic_core/crates/core", features = ["cli"] }
Cargo build log: cargo-build.log So how do you develop this thing? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @intgr We usually try to develop both quite independent and then release rustic_core before we bump the version in rustic... |
Beta Was this translation helpful? Give feedback.
Hi @intgr
Thanks for the question. Seems we are a bit behind in rustic and current rustic_core version is not supported.
I've create #1456 (will be merged soon into main) - with these changes, using a local+recent rustic_core dependency should work.
We usually try to develop both quite independent and then release rustic_core before we bump the version in rustic...