Skip to content

Commit

Permalink
fix: build failures (#1888)
Browse files Browse the repository at this point in the history
  • Loading branch information
amitksingh1490 authored May 7, 2024
1 parent 756a56f commit 3ad5e92
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 124 deletions.
109 changes: 0 additions & 109 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 14 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ futures-util = { version = "0.3.30" }
indexmap = "2.2.6"
insta = { version = "1.38.0", features = ["json"] }
tokio = { version = "1.37.0", features = ["rt", "time"] }
reqwest = { version = "0.11", features = [
"json",
"rustls-tls",
], default-features = false }
tracing = "0.1.40"
lazy_static = "1.4.0"
serde_json = { version = "1.0.116", features = ["preserve_order"] }
serde = { version = "1.0.200", features = ["derive"] }


[dependencies]
# dependencies specific to CLI must have optional = true and the dep should be added to default feature.
Expand Down Expand Up @@ -48,18 +57,15 @@ schemars = { version = "0.8.17", features = ["derive"] }
hyper = { version = "0.14.28", features = ["server"], default-features = false }
tokio = { workspace = true }
anyhow = { workspace = true }
reqwest = { workspace = true }
derive_setters = "0.1.6"
thiserror = "1.0.59"
serde_json = { version = "1.0.116", features = ["preserve_order"] }
serde = { version = "1.0.200", features = ["derive"] }
serde_json = { workspace = true }
serde = { workspace = true }
serde_qs = "0.13"
serde_yaml = "0.9.34"
serde_urlencoded = "0.7.1"
url = { version = "2.5.0", features = ["serde"] }
reqwest = { version = "0.11", features = [
"json",
"rustls-tls",
], default-features = false }
indexmap = { workspace = true }
once_cell = "1.19.0"
clap = { version = "4.5.4", features = ["derive"] }
Expand Down Expand Up @@ -92,14 +98,14 @@ update-informer = { version = "1.1.0", default-features = false, features = [
"github",
"reqwest",
], optional = true }
lazy_static = "1.4.0"
lazy_static = { workspace = true }
which = { version = "6.0.1", optional = true }
async-recursion = "1.1.1"
tempfile = "3.10.1"
rquickjs = { "version" = "0.5.1", optional = true, features = ["full"] }
strum_macros = "0.26.2"
# TODO: disable some levels with features?
tracing = "0.1.40"
tracing = { workspace = true }
tracing-subscriber = { version = "0.3.18", features = [
"default",
"fmt",
Expand Down
14 changes: 7 additions & 7 deletions tailcall-tracker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
anyhow = "1.0.82"
lazy_static = "1.4.0"
serde = { version = "1.0.200", features = ["derive"] }
serde_json = { version = "1.0.82", features = ["preserve_order"] }
reqwest = { workspace = true }
anyhow = { workspace = true }
lazy_static = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
machineid-rs = "1.2.4"
tokio = { version = "1.0.1", features = ["rt", "time"] }
tracing = "0.1.40"
tokio = { workspace = true }
tracing = { workspace = true }
sysinfo = "0.30.12"

1 comment on commit 3ad5e92

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Running 30s test @ http://localhost:8000/graphql

4 threads and 100 connections

Thread Stats Avg Stdev Max +/- Stdev
Latency 7.05ms 3.48ms 213.98ms 77.51%
Req/Sec 3.60k 128.61 3.89k 87.75%

430033 requests in 30.01s, 2.16GB read

Requests/sec: 14329.18

Transfer/sec: 73.55MB

Please sign in to comment.