Move edition and MSRV to workspace

This commit is contained in:
Henrik Hørlück Berg 2023-08-15 01:31:46 +02:00 committed by Johannes Altmanninger
parent cf5b9d1c7e
commit bc29b4aee1
3 changed files with 8 additions and 3 deletions

View file

@ -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]

View file

@ -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/" }

View file

@ -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