remove colored package as a dependency (#289)

V3_GIT_ORIGIN_REV_ID: d08536edec330a9fd5df009fcb5ddbb466e7d585
This commit is contained in:
pranshi06 2024-02-01 15:57:15 +05:30 committed by hasura-bot
parent 863625119f
commit d595fb6cd0
3 changed files with 2 additions and 25 deletions

23
v3/Cargo.lock generated
View File

@ -556,17 +556,6 @@ version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
[[package]]
name = "colored"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6"
dependencies = [
"is-terminal",
"lazy_static",
"windows-sys 0.48.0",
]
[[package]]
name = "combine"
version = "3.8.1"
@ -1584,17 +1573,6 @@ version = "2.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
[[package]]
name = "is-terminal"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
dependencies = [
"hermit-abi 0.3.3",
"rustix",
"windows-sys 0.48.0",
]
[[package]]
name = "itertools"
version = "0.10.5"
@ -1895,7 +1873,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8d3038e23466858569c2d30a537f691fa0d53b51626630ae08262943e3bbb8b"
dependencies = [
"assert-json-diff",
"colored",
"futures",
"hyper",
"log",

View File

@ -28,6 +28,6 @@ lang-graphql = { path = "../lang-graphql" }
pretty_assertions = "1.3.0"
tokio = { version = "1.29.0", features = ["macros"] }
jsonwebkey = { version = "0.3.5", features = ["generate", "jsonwebtoken","pkcs-convert"] }
mockito = "1.1.0"
mockito = {version = "1.1.0", default-features = false, features = []}
indoc = "2"
openssl = "0.10.60"

View File

@ -22,6 +22,6 @@ tracing-util = { path = "../tracing-util" }
[dev-dependencies]
pretty_assertions = "1.3.0"
mockito = "1.1.0"
mockito = {version = "1.1.0", default-features = false, features = []}
tokio = "1.29.0"
rand = "0.8.5"