-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP ddcommon-net crate + profiling updated
- Loading branch information
1 parent
c29f8fa
commit 3cdce0b
Showing
9 changed files
with
598 additions
and
205 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" } |
Oops, something went wrong.