Remove widestring-suffix from Cargo

This commit is contained in:
Fabian Boehm 2024-01-12 20:25:38 +01:00
parent fae780d666
commit 507d634cfa
3 changed files with 0 additions and 19 deletions

10
Cargo.lock generated
View file

@ -118,7 +118,6 @@ dependencies = [
"rsconf",
"serial_test",
"widestring",
"widestring-suffix",
]
[[package]]
@ -485,15 +484,6 @@ version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8"
[[package]]
name = "widestring-suffix"
version = "0.1.0"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "winapi"
version = "0.3.9"

View file

@ -1,7 +1,6 @@
[workspace]
resolver = "2"
members = [
"widestring-suffix",
]
[workspace.package]
@ -18,7 +17,6 @@ edition.workspace = true
rust-version.workspace = true
[dependencies]
widestring-suffix = { path = "widestring-suffix/" }
pcre2 = { git = "https://github.com/fish-shell/rust-pcre2", branch = "master", default-features = false, features = ["utf32"] }
fast-float = { git = "https://github.com/fish-shell/fast-float-rust", branch="fish" }
hexponent = { git = "https://github.com/fish-shell/hexponent", branch="fish" }

View file

@ -166,10 +166,3 @@ add_test(
)
set_tests_properties("cargo-test" PROPERTIES SKIP_RETURN_CODE ${SKIP_RETURN_CODE})
add_test_target("cargo-test")
add_test(
NAME "cargo-test-widestring"
COMMAND env ${VARS_FOR_CARGO} cargo test ${CARGO_FLAGS} --package widestring-suffix --target-dir ${rust_target_dir} ${cargo_test_flags}
WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}"
)
add_test_target("cargo-test-widestring")