3
0
Fork 0
mirror of https://github.com/Swatinem/rust-cache synced 2025-04-27 13:45:52 +00:00

update dependencies, use watto as example

This commit is contained in:
Arpad Borsos 2022-09-04 12:03:43 +02:00
parent 6720f05bc4
commit b8d4fa4eaf
No known key found for this signature in database
GPG key ID: FC7BCA77824B3298
6 changed files with 6669 additions and 1031 deletions

42
tests/Cargo.lock generated
View file

@ -301,6 +301,12 @@ version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "leb128"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
[[package]]
name = "libc"
version = "0.2.126"
@ -448,11 +454,6 @@ dependencies = [
"unicode-ident",
]
[[package]]
name = "proguard"
version = "5.0.0"
source = "git+https://github.com/getsentry/rust-proguard?rev=4bc2cddd79cc8f7c9d14dda2f9f4c431e10c9424#4bc2cddd79cc8f7c9d14dda2f9f4c431e10c9424"
[[package]]
name = "quote"
version = "1.0.20"
@ -521,8 +522,8 @@ dependencies = [
name = "rust-cache"
version = "0.1.0"
dependencies = [
"proguard",
"reqwest",
"watto",
]
[[package]]
@ -634,6 +635,26 @@ dependencies = [
"winapi",
]
[[package]]
name = "thiserror"
version = "1.0.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d0a539a918745651435ac7db7a18761589a94cd7e94cd56999f828bf73c8a57"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c251e90f708e16c49a16f4917dc2131e75222b72edfa9cb7f7c58ae56aae0c09"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tinyvec"
version = "1.6.0"
@ -842,6 +863,15 @@ version = "0.2.81"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a89911bd99e5f3659ec4acf9c4d93b0a90fe4a2a11f15328472058edc5261be"
[[package]]
name = "watto"
version = "0.1.0"
source = "git+https://github.com/getsentry/watto?rev=d71c8218506bddba102a124a460d64da25e303dc#d71c8218506bddba102a124a460d64da25e303dc"
dependencies = [
"leb128",
"thiserror",
]
[[package]]
name = "web-sys"
version = "0.3.58"

View file

@ -7,4 +7,4 @@ edition = "2021"
[dependencies]
reqwest = "0.11.11"
proguard = { git = "https://github.com/getsentry/rust-proguard", rev = "4bc2cddd79cc8f7c9d14dda2f9f4c431e10c9424" }
watto = { git = "https://github.com/getsentry/watto", rev = "d71c8218506bddba102a124a460d64da25e303dc", features = ["strings"] }