Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Duniter v2S
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
rust
Duniter v2S
Merge requests
!131
Draft: (paused) Use workspace for Cargo.toml files
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Draft: (paused) Use workspace for Cargo.toml files
jrx/workspace_tomls
into
master
Overview
14
Commits
7
Pipelines
6
Changes
2
2 unresolved threads
Hide all comments
Closed
Hugo Trentesaux
requested to merge
jrx/workspace_tomls
into
master
2 years ago
Overview
14
Commits
7
Pipelines
6
Changes
2
2 unresolved threads
Hide all comments
Expand
Cargo provides a workspace feature (
book
,
reference
). We can use it to avoid repetition.
0
0
Merge request reports
Viewing commit
eef3531f
Prev
Next
Show latest version
2 files
+
15
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
eef3531f
live tests using workspace dependencies
· eef3531f
jrx
authored
2 years ago
live-tests/Cargo.toml
+
6
−
6
Options
@@ -10,9 +10,9 @@ homepage.workspace = true
version.workspace
=
true
[dev-dependencies]
anyhow
=
"1.0"
hex-literal
=
"0.3"
parity-scale-codec
=
"3.1.5"
sp-core
=
{
git
=
'https://github.com/duniter/substrate'
,
branch
=
'duniter-substrate-v0.9.32'
}
subxt
=
{
git
=
'https://github.com/duniter/subxt'
,
branch
=
'duniter-substrate-v0.9.32'
}
tokio
=
{
version
=
"1.15.0"
,
features
=
[
"macros"
]
}
anyhow
=
{
workspace
=
true
}
hex-literal
=
{
workspace
=
true
}
parity-scale-codec
=
{
workspace
=
true
}
sp-core
=
{
workspace
=
true
}
subxt
=
{
workspace
=
true
}
tokio
=
{
workspace
=
true
}
Loading