Update pwd-grp to 0.1.1 to fix MacOS build etc.

This also gets rid of a duplicate copy of derive-adhoc.
This commit is contained in:
Ian Jackson 2023-07-20 18:56:18 +01:00
parent f64997e1e1
commit 1f7911f0d9
2 changed files with 6 additions and 33 deletions

37
Cargo.lock generated
View File

@ -1081,43 +1081,16 @@ dependencies = [
"zeroize", "zeroize",
] ]
[[package]]
name = "derive-adhoc"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3bf4f1be2a84b4ba6f6443854fc9c3b8942ee3ffadadc7106fa777659a946cd4"
dependencies = [
"derive-adhoc-macros 0.6.1",
"heck",
]
[[package]] [[package]]
name = "derive-adhoc" name = "derive-adhoc"
version = "0.7.0" version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f67099c8db34a9fde66880bfccd24d6e401c0f643a04684dce963e97a25fd621" checksum = "f67099c8db34a9fde66880bfccd24d6e401c0f643a04684dce963e97a25fd621"
dependencies = [ dependencies = [
"derive-adhoc-macros 0.7.0", "derive-adhoc-macros",
"heck", "heck",
] ]
[[package]]
name = "derive-adhoc-macros"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a7134a81d247901c0d03ef80194867644796cd8f858e82bf1b433dfc1c35485"
dependencies = [
"heck",
"itertools",
"proc-macro-crate",
"proc-macro2",
"quote",
"sha3",
"strum",
"syn 1.0.109",
"void",
]
[[package]] [[package]]
name = "derive-adhoc-macros" name = "derive-adhoc-macros"
version = "0.7.0" version = "0.7.0"
@ -2875,11 +2848,11 @@ dependencies = [
[[package]] [[package]]
name = "pwd-grp" name = "pwd-grp"
version = "0.1.0" version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f051bd6fedf71a440d884906dd1c9b66c678e3a2882652b53c5ec8b0aa4268e4" checksum = "6955c41fd7e4283bdf6ff3e7218b7e3f8ef24c4236b31d22be050f4cfd5e2a2c"
dependencies = [ dependencies = [
"derive-adhoc 0.6.1", "derive-adhoc",
"libc", "libc",
"paste", "paste",
"thiserror", "thiserror",
@ -4890,7 +4863,7 @@ version = "0.8.2"
dependencies = [ dependencies = [
"amplify", "amplify",
"async-trait", "async-trait",
"derive-adhoc 0.7.0", "derive-adhoc",
"educe", "educe",
"futures", "futures",
"futures-await-test", "futures-await-test",

View File

@ -31,7 +31,7 @@ libc = "0.2"
once_cell = "1" once_cell = "1"
[target.'cfg(all(unix, not(target_os="ios"), not(target_os="android")))'.dependencies] [target.'cfg(all(unix, not(target_os="ios"), not(target_os="android")))'.dependencies]
pwd-grp = "0.1" pwd-grp = "0.1.1"
[dev-dependencies] [dev-dependencies]
serde_json = "1.0.50" serde_json = "1.0.50"