Skip to content

Commit

Permalink
WIP ddcommon-net crate + profiling updated
Browse files Browse the repository at this point in the history
  • Loading branch information
morrisonlevi committed Nov 19, 2024
1 parent c29f8fa commit 3cdce0b
Show file tree
Hide file tree
Showing 9 changed files with 598 additions and 205 deletions.
110 changes: 78 additions & 32 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ members = [
"data-pipeline-ffi",
"ddsketch",
"tinybytes",
"dogstatsd-client",
"dogstatsd-client", "ddcommon-net",
]

# https://doc.rust-lang.org/cargo/reference/resolver.html#feature-resolver-version-2
Expand Down
22 changes: 22 additions & 0 deletions ddcommon-net/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Copyright 2024-Present Datadog, Inc. https://www.datadoghq.com/
# SPDX-License-Identifier: Apache-2.0

[package]
name = "ddcommon-net"
rust-version.workspace = true
edition.workspace = true
version.workspace = true
license.workspace = true

[dependencies]
ddcommon = { path = "../ddcommon" }
hex = { version = "0.4" }
http = { version = "1" }
hyper = { version = "1", default-features = false }
hyper-util = { version = "0.1", default-features = false, features = ["tokio"] }
hyperlocal = { version = "0.9" }
serde = { version = "1.0", features = ["derive"] }
thiserror = { version = "2" }
tokio = { version = "1.41" }
tokio-rustls = { version = "0.26" }
tokio-util = { version = "0.7" }
Loading

0 comments on commit 3cdce0b

Please sign in to comment.