Skip to content

Commit 609dbfd

Browse files
chore: [SVLS-6242] fips feature (#8)
intended for bottlecap use, only. other environments will need to validate for themselves.
1 parent 93ab35e commit 609dbfd

File tree

3 files changed

+116
-23
lines changed

3 files changed

+116
-23
lines changed

Cargo.lock

Lines changed: 105 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/dogstatsd/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ hashbrown = { version = "0.15.0", default-features = false, features = ["inline-
1515
protobuf = { version = "3.5.0", default-features = false }
1616
ustr = { version = "1.0.0", default-features = false }
1717
fnv = { version = "1.0.7", default-features = false }
18-
reqwest = { version = "0.12.4", features = ["json", "http2", "rustls-tls"], default-features = false }
18+
reqwest = { version = "0.12.4", features = ["json", "http2"], default-features = false }
1919
serde = { version = "1.0.197", default-features = false, features = ["derive"] }
2020
serde_json = { version = "1.0.116", default-features = false, features = ["alloc"] }
2121
thiserror = { version = "1.0.58", default-features = false }
@@ -29,3 +29,7 @@ zstd = { version = "0.13.3", default-features = false }
2929
mockito = { version = "1.5.0", default-features = false }
3030
proptest = "1.4.0"
3131
tracing-test = { version = "0.2.5", default-features = false }
32+
33+
[features]
34+
default = [ "reqwest/rustls-tls" ]
35+
fips = [ "reqwest/rustls-tls-no-provider" ]

crates/trace-agent/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ async-trait = "0.1.64"
1818
tracing = { version = "0.1", default-features = false }
1919
serde = { version = "1.0.145", features = ["derive"] }
2020
serde_json = "1.0"
21-
ddcommon = { git = "https://github.com/DataDog/libdatadog/", rev = "3dab0bed2e144ce78c10a2378d1aff8fb5974f7d" }
22-
datadog-trace-protobuf = { git = "https://github.com/DataDog/libdatadog/", rev = "3dab0bed2e144ce78c10a2378d1aff8fb5974f7d" }
23-
datadog-trace-utils = { git = "https://github.com/DataDog/libdatadog/", rev = "3dab0bed2e144ce78c10a2378d1aff8fb5974f7d", features = ["mini_agent"] }
24-
datadog-trace-normalization = { git = "https://github.com/DataDog/libdatadog/", rev = "3dab0bed2e144ce78c10a2378d1aff8fb5974f7d" }
25-
datadog-trace-obfuscation = { git = "https://github.com/DataDog/libdatadog/", rev = "3dab0bed2e144ce78c10a2378d1aff8fb5974f7d" }
21+
ddcommon = { git = "https://github.com/DataDog/libdatadog/", ref = "d6a2da32c6b92d6865a7e7987c8a1df2203fb1ae" }
22+
datadog-trace-protobuf = { git = "https://github.com/DataDog/libdatadog/", ref = "d6a2da32c6b92d6865a7e7987c8a1df2203fb1ae" }
23+
datadog-trace-utils = { git = "https://github.com/DataDog/libdatadog/", ref = "d6a2da32c6b92d6865a7e7987c8a1df2203fb1ae", features = ["mini_agent"] }
24+
datadog-trace-normalization = { git = "https://github.com/DataDog/libdatadog/", ref = "d6a2da32c6b92d6865a7e7987c8a1df2203fb1ae" }
25+
datadog-trace-obfuscation = { git = "https://github.com/DataDog/libdatadog/", ref = "d6a2da32c6b92d6865a7e7987c8a1df2203fb1ae" }
2626

2727
[dev-dependencies]
2828
rmp-serde = "1.1.1"
2929
serial_test = "2.0.0"
3030
duplicate = "0.4.1"
3131
tempfile = "3.3.0"
32-
datadog-trace-utils = { git = "https://github.com/DataDog/libdatadog/", rev = "3dab0bed2e144ce78c10a2378d1aff8fb5974f7d", features=["test-utils"] }
32+
datadog-trace-utils = { git = "https://github.com/DataDog/libdatadog/", ref = "d6a2da32c6b92d6865a7e7987c8a1df2203fb1ae", features=["test-utils"] }

0 commit comments

Comments
 (0)