build: do not use workspace dependencies (#695)

As written in the workspace Cargo.toml:

> Note that for better cross-tooling interactions, do not use workspace
dependencies for anything that is not "workspace internal" (e.g.: mostly
dev-dependencies). E.g.: release-plz can’t detect that a dependency has
been
updated in a way warranting a version bump in the dependant if no commit
is
touching a file associated to the crate. It is technically okay to use
that
for "private" (i.e.: not used in the public API) dependencies too, but
we
still want to make follow-up releases to stay up to date with the
community,
even for private dependencies.

Expectation is that release-plz will be able to auto-detect when bumping
dependents is necessary.

Closes #689
This commit is contained in:
Benoît Cortier 2025-03-12 14:25:01 +01:00 committed by GitHub
parent 5c890d40ad
commit c21fa44fd6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
34 changed files with 195 additions and 244 deletions

View file

@ -29,19 +29,19 @@ anyhow = "1.0"
tokio = { version = "1", features = ["net", "macros", "sync", "rt"] }
tokio-rustls = "0.26"
async-trait = "0.1"
ironrdp-async.workspace = true
ironrdp-ainput.workspace = true
ironrdp-core.workspace = true
ironrdp-pdu.workspace = true
ironrdp-svc.workspace = true
ironrdp-cliprdr.workspace = true
ironrdp-displaycontrol.workspace = true
ironrdp-dvc.workspace = true
ironrdp-tokio.workspace = true
ironrdp-acceptor.workspace = true
ironrdp-graphics.workspace = true
ironrdp-rdpsnd.workspace = true
tracing.workspace = true
ironrdp-async = { path = "../ironrdp-async", version = "0.3" }
ironrdp-ainput = { path = "../ironrdp-ainput", version = "0.1" }
ironrdp-core = { path = "../ironrdp-core", version = "0.1" }
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.3" }
ironrdp-svc = { path = "../ironrdp-svc", version = "0.1" }
ironrdp-cliprdr = { path = "../ironrdp-cliprdr", version = "0.1" }
ironrdp-displaycontrol = { path = "../ironrdp-displaycontrol", version = "0.1" }
ironrdp-dvc = { path = "../ironrdp-dvc", version = "0.1" }
ironrdp-tokio = { path = "../ironrdp-tokio", version = "0.2" }
ironrdp-acceptor = { path = "../ironrdp-acceptor", version = "0.3" }
ironrdp-graphics = { path = "../ironrdp-graphics", version = "0.2" }
ironrdp-rdpsnd = { path = "../ironrdp-rdpsnd", version = "0.3" }
tracing = { version = "0.1", features = ["log"] }
x509-cert = { version = "0.2.5", optional = true }
rustls-pemfile = { version = "2.2.0", optional = true }
rayon = { version = "1.10.0", optional = true }