cargo: bump assay

This commit is contained in:
Harsh Shandilya 2022-03-24 16:45:12 +05:30
parent ae0eb3860a
commit 58809b1f74
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
2 changed files with 71 additions and 26 deletions

95
Cargo.lock generated
View file

@ -29,26 +29,29 @@ checksum = "4361135be9122e0870de935d7c439aef945b9f9ddd4199a553b5270b49c82a27"
[[package]]
name = "assay"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b6400785ccafeab7f18a4d23d726f9090dd1195386f06026c6e59db36e11938"
source = "git+https://github.com/mgattozzi/assay?rev=ff4afc5f15d8241efe626f58c69492b964863e0e#ff4afc5f15d8241efe626f58c69492b964863e0e"
dependencies = [
"assay-proc-macro",
"pretty_assertions",
"pretty_assertions_sorted",
"rusty-fork",
"tempfile",
"tokio",
]
[[package]]
name = "assay-proc-macro"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d94121b572ccf1d1b38a1004155e59c64f4c6ff7793070d84a8807e0550881e"
source = "git+https://github.com/mgattozzi/assay?rev=ff4afc5f15d8241efe626f58c69492b964863e0e#ff4afc5f15d8241efe626f58c69492b964863e0e"
dependencies = [
"quote",
"syn",
]
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "bitflags"
version = "1.3.2"
@ -116,6 +119,18 @@ dependencies = [
"syn",
]
[[package]]
name = "darrentsung_debug_parser"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3b4a023505a574e748690242a59641142566fafab3ab719778c770f8a72e727"
dependencies = [
"anyhow",
"html-escape",
"nom",
"ordered-float",
]
[[package]]
name = "diff"
version = "0.1.12"
@ -169,12 +184,12 @@ dependencies = [
]
[[package]]
name = "hermit-abi"
version = "0.1.19"
name = "html-escape"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
checksum = "b8e7479fa1ef38eb49fb6a42c426be515df2d063f06cb8efd3e50af073dbc26c"
dependencies = [
"libc",
"utf8-width",
]
[[package]]
@ -232,13 +247,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
[[package]]
name = "num_cpus"
version = "1.13.1"
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "nom"
version = "7.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
dependencies = [
"memchr",
"minimal-lexical",
]
[[package]]
name = "num-traits"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"hermit-abi",
"libc",
"autocfg",
]
[[package]]
@ -276,6 +306,15 @@ version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
[[package]]
name = "ordered-float"
version = "2.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87"
dependencies = [
"num-traits",
]
[[package]]
name = "output_vt100"
version = "0.1.3"
@ -303,6 +342,16 @@ dependencies = [
"output_vt100",
]
[[package]]
name = "pretty_assertions_sorted"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e58e6e8d9ff89bc50d4c961accef4b22d7414a318b7b09ab3f3d3255ffb38158"
dependencies = [
"darrentsung_debug_parser",
"pretty_assertions",
]
[[package]]
name = "proc-macro2"
version = "1.0.36"
@ -459,16 +508,6 @@ dependencies = [
"once_cell",
]
[[package]]
name = "tokio"
version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee"
dependencies = [
"num_cpus",
"pin-project-lite",
]
[[package]]
name = "toml"
version = "0.5.8"
@ -557,6 +596,12 @@ version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
[[package]]
name = "utf8-width"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1"
[[package]]
name = "valuable"
version = "0.1.0"

View file

@ -24,7 +24,7 @@ tracing-journald = { version = "0.2.4", optional = true }
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
[dev-dependencies]
assay = "0.1.1"
assay = { git = "https://github.com/mgattozzi/assay", rev = "ff4afc5f15d8241efe626f58c69492b964863e0e", default-features = false }
[features]
journald = ["tracing-journald"]