mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
Move edition and MSRV to workspace
This commit is contained in:
parent
cf5b9d1c7e
commit
bc29b4aee1
3 changed files with 8 additions and 3 deletions
|
@ -6,6 +6,10 @@ members = [
|
|||
]
|
||||
default-members = ["fish-rust"]
|
||||
|
||||
[workspace.package]
|
||||
rust-version = "1.67"
|
||||
edition = "2021"
|
||||
|
||||
# TODO: Move fish-rust to src, make it the root package of this workspace
|
||||
|
||||
[patch.crates-io]
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
[package]
|
||||
name = "fish-rust"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
rust-version = "1.67"
|
||||
edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
widestring-suffix = { path = "./widestring-suffix/" }
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
[package]
|
||||
name = "widestring-suffix"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
|
|
Loading…
Reference in a new issue