forked from FuelLabs/fuel-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version compatibility cleanup (FuelLabs#1171)
The versions being tested for backwards compatibility are no longer supported, so I've excluded them from the workspace to avoid spending ci hours on these.
- Loading branch information
Showing
3 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
# Add new versions here when testing backwards compatibility between fuel-core-client and fuel-core | ||
"placeholder" | ||
] | ||
|
||
# exclude previous versions no longer maintained | ||
exclude = [ | ||
"0.14.1-0.15.0/fuel-core:0.14.1-client:0.15.0", | ||
"0.14.1-0.15.0/fuel-core:0.15.0-client:0.14.1", | ||
"0.14.1-0.15.0/fuel-core:0.15.0-client:0.14.1" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[package] | ||
name = "placeholder" | ||
version = "0.1.0" | ||
edition = "2021" | ||
publish = false | ||
license = "BUSL-1.1" | ||
description = "placeholder for version compatibility tests" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
fn main() { | ||
println!("Hello, world!"); | ||
} |