Skip to content

Commit 5c69052

Browse files
chore(deps): update rust crate syn to v3 (#2300)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [syn](https://redirect.github.com/dtolnay/syn) | workspace.dependencies | major | `2` → `3` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/1486) for more information. **Cargo major update** — Before merging, verify the workspace compiles and check upstream release notes for removed features or API changes. --- ### Release Notes <details> <summary>dtolnay/syn (syn)</summary> ### [`v3.0.3`](https://redirect.github.com/dtolnay/syn/releases/tag/3.0.3) [Compare Source](https://redirect.github.com/dtolnay/syn/compare/3.0.2...3.0.3) - Documentation improvements ### [`v3.0.2`](https://redirect.github.com/dtolnay/syn/releases/tag/3.0.2) [Compare Source](https://redirect.github.com/dtolnay/syn/compare/3.0.1...3.0.2) - Add [`Error::new_range(start..end, "msg")`](https://docs.rs/syn/3/syn/struct.Error.html#method.new_range) ([#&#8203;2068](https://redirect.github.com/dtolnay/syn/issues/2068), [#&#8203;2070](https://redirect.github.com/dtolnay/syn/issues/2070)) - Add [`Cursor::prev_span`](https://docs.rs/syn/3/syn/buffer/struct.Cursor.html#method.prev_span) ### [`v3.0.1`](https://redirect.github.com/dtolnay/syn/releases/tag/3.0.1) [Compare Source](https://redirect.github.com/dtolnay/syn/compare/3.0.0...3.0.1) - Parse const traits ([#&#8203;2056](https://redirect.github.com/dtolnay/syn/issues/2056), [#&#8203;2057](https://redirect.github.com/dtolnay/syn/issues/2057), [#&#8203;2058](https://redirect.github.com/dtolnay/syn/issues/2058), [#&#8203;2063](https://redirect.github.com/dtolnay/syn/issues/2063), [#&#8203;2064](https://redirect.github.com/dtolnay/syn/issues/2064)) - Parse unsafe binder types ([#&#8203;2065](https://redirect.github.com/dtolnay/syn/issues/2065)) - Parse impl restrictions ([#&#8203;2066](https://redirect.github.com/dtolnay/syn/issues/2066)) ### [`v3.0.0`](https://redirect.github.com/dtolnay/syn/releases/tag/3.0.0) [Compare Source](https://redirect.github.com/dtolnay/syn/compare/2.0.119...3.0.0) This release contains adjustments to the syntax tree to account for ongoing Rust language development from the 3 years since syn 2.0.0 and to anticipate some in-flight Rust language RFCs. These include: default values in fields, pinned type sugar, raw lifetimes, generator blocks and functions, unnamed enum variants, attributes in tuple types and tuple patterns, named arguments in parenthesized generic argument lists, lightweight clones, const traits, const function pointers, mutability restricted fields, supertrait auto implementation, final associated functions, trait implementability restrictions, const blocks in path arguments, item-level const blocks, return type notation, never patterns, function delegation, mutable by-reference bindings, in-place initialization, field projections, explicitly dyn-compatible traits, view types, file-level frontmatter, generic const arguments, guard patterns, lazy type aliases, explicitly safe foreign items, super let, unsafe fields, pattern types, heterogeneous try-blocks, function contracts, async function trait bounds, static closure coroutine syntax, unsafe binder types, move expressions, for-await loops, and postfix keywords. <br> <p align="center"><a href="https://docs.rs/syn/3/syn">[API documentation for 3.0]</a></p> ### Breaking changes #### Modifiers To reserve more room for language evolution, there are 10 new non-exhaustive structs in the syntax tree having the following commonality: - Name ending in `Modifiers`. {`BlockModifiers`, `ClosureModifiers`, `ConstModifiers`, `FieldModifiers`, `FnModifiers`, `ImplModifiers`, `LocalModifiers`, `TraitBoundModifiers`, `TraitModifiers`, `TypeModifiers`} - Each implements `Default`. The default value is guaranteed to comprise no tokens. - Non-exhaustive. Can only be instantiated by Syn's parser or by creating and then mutating `▁▁Modifiers::default()`. - Does not implement `Parse`. When parsing, they are parsed by the enclosing syntax tree node. - Does not implement `ToTokens`. In some cases the syntax that these nodes might hold in the future is not necessarily contiguous tokens. - Provides `.require_empty() -> Result<()>` which returns a meaningfully spanned error if the modifiers are different from the empty default. This enables a caller to reject syntax it does not recognize without knowing what that syntax may be. #### Types - `Type::BareFn` has been renamed to `Type::FnPtr` to mirror the compiler's terminology. Together with this, `BareVariadic` is renamed to `FnPtrVariadic`. - The mutually exclusive `const_token` and `mutability` fields of `Type::Ptr` have been unified into an enum of type `PointerMutability`, which was already previously used by `Expr::RawAddr`. - Every `Type` variant now holds attributes, which can represent the attributes of element types inside a tuple type, or attributes for a function return type. - `BareFnArg` is renamed to `NamedArg` and is used in `ParenthesizedGenericArguments`, in addition to the existing use in `Type::FnPtr`. #### Expressions - In `Expr::Closure`, the fields `or1_token` and `or2_token` have been renamed to `inputs_begin` and `inputs_end` to indicate the beginning and ending `|` token of the closure inputs. #### Statements - Attributes are now preserved on all expression kinds in statement position. Previously, parsing would silently lose attributes on some expression statements without a dedicated Expr variant, such as tail-call expressions. #### Patterns - The `guard` field of `Arm` is replaced by a new `Pat::Guard` variant held in the arm's `pat`. #### Items - The `unsafety` field of `Signature`, which represented the presence or absence of `unsafe`, is replaced by a 3-way `Safety` enum which may be safe, unsafe, or default. `ForeignItem::Static` also gets a `Safety`. - Some of the fields of `Receiver` have been split to a non-exhaustive `ReceiverKind` enum to create room for proposed new kinds of method receivers, such as pinned. - Type aliases now hold a `WhereClausePlacement` to distinguish between early placement (which is the default for item-level type aliases and is *deprecated* in associated type aliases) and late placement (which is the default for associated type aliases and is *unstable* in item-level type aliases). Parsing and printing a syntax tree will now preserve the where-clause placement rather than rewriting it to the default placement for the item kind. #### Generics - `WherePredicate::Lifetime` and `WherePredicate::Type` have a new field holding the attributes on the where-predicates. - `GenericParam::Type` and `GenericParam::Const` now match the rest of the syntax tree in holding their optional default using a single Option of tuple, rather than a pair of Option. #### Literals - The `Parse` implementation of `Lifetime` no longer permits keyword lifetimes, matching a change in Rust 1.81 to deny such lifetimes pre-expansion. `Lifetime::parse_any` may be used to parse lifetimes permissive of keywords. - `LitInt` and `LitFloat` no longer implement `From<proc_macro2::Literal>`. Use `Lit::new(literal)` and then match `Lit::Int` or `Lit::Float`. - The `StrStyle` enum was unused and has been deleted. #### More - `File` contains a new `Option<Frontmatter>`, but does not yet parse frontmatter in `syn::parse_file` until that language feature progresses closer to stabilization. - Some enums no longer provide `From` impls. Construct the variant by name instead, such as `Expr::Array(e)` in place of `e.into()`. - The `pop` method of `Punctuated<T, P>` now returns `Option<T>` discarding the trailing punctuation if any, rather than `Option<Pair<T, P>>`. A new method `pop_pair` provides the old behavior. - Syntax tree traversal (`visit`, `visit_mut`, `fold`) no longer provides a method for processing `Span`. This was already incompletely supported and never walked most of the spans in a syntax tree. - The `Speculative` and `AnyDelimiter` traits have been sealed and cannot be implemented for types outside of Syn's `ParseStream`. ### [`v2.0.119`](https://redirect.github.com/dtolnay/syn/releases/tag/2.0.119) [Compare Source](https://redirect.github.com/dtolnay/syn/compare/2.0.118...2.0.119) - Preserve attributes on tail-call expressions in statement position ([#&#8203;1994](https://redirect.github.com/dtolnay/syn/issues/1994)) - Parse field-representing types builtin in type position ([#&#8203;1996](https://redirect.github.com/dtolnay/syn/issues/1996)) ### [`v2.0.118`](https://redirect.github.com/dtolnay/syn/releases/tag/2.0.118) [Compare Source](https://redirect.github.com/dtolnay/syn/compare/2.0.117...2.0.118) - Documentation improvements </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - Between 12:00 AM and 03:59 AM, only on Monday (`* 0-3 * * 1`) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/DataDog/saluki). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0NC4yNC4wIiwidXBkYXRlZEluVmVyIjoiNDQuMjQuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: jszwedko <jesse.szwedko@datadoghq.com> 9ee5a4d
1 parent 99603d5 commit 5c69052

748 files changed

Lines changed: 3824 additions & 3824 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

404.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
<link rel="preload stylesheet" href="/saluki/assets/style.BktGeqBU.css" as="style">
1010
<link rel="preload stylesheet" href="/saluki/vp-icons.css" as="style">
1111

12-
<script type="module" src="/saluki/assets/app.B88nU-26.js"></script>
12+
<script type="module" src="/saluki/assets/app.CNnjeTMf.js"></script>
1313
<link rel="preload" href="/saluki/assets/inter-roman-latin.Di8DUHzh.woff2" as="font" type="font/woff2" crossorigin="">
1414
<script id="check-dark-mode">(()=>{const e=localStorage.getItem("vitepress-theme-appearance")||"auto",a=window.matchMedia("(prefers-color-scheme: dark)").matches;(!e||e==="auto"?a:e==="dark")&&document.documentElement.classList.add("dark")})();</script>
1515
<script id="check-mac-os">document.documentElement.classList.toggle("mac",/Mac|iPhone|iPod|iPad/i.test(navigator.platform));</script>
1616
</head>
1717
<body>
1818
<div id="app"></div>
19-
<script>window.__VP_HASH_MAP__=JSON.parse("{\"agent-data-plane_configuration_configuration.md\":\"C5t5IDyu\",\"agent-data-plane_dogstatsd-top.md\":\"lktrMO3v\",\"agent-data-plane_index.md\":\"DheTwieG\",\"agent-data-plane_memory.md\":\"BaCodENR\",\"agent-data-plane_releasing.md\":\"CPikMIB_\",\"agent-data-plane_telemetry.md\":\"iFdiIk4U\",\"api-docs_index.md\":\"BjRg96xF\",\"development_common-language.md\":\"CQTQvjj4\",\"development_contributing.md\":\"B3-x0y_n\",\"development_index.md\":\"BS6n8YEx\",\"development_style-guide.md\":\"wX-WjxDd\",\"development_testing-patterns.md\":\"BmX8YpX_\",\"development_testing.md\":\"CjM81sGR\",\"index.md\":\"CZkUxKiB\",\"reference_adrs__template.md\":\"DTM5F4k-\",\"reference_adrs_index.md\":\"ChpyntGV\",\"reference_adrs_records_001-open-design-docs.md\":\"BSl5x1YC\",\"reference_architecture_index.md\":\"CZtIYODd\",\"reference_proposals_index.md\":\"u0SYvrGj\"}");window.__VP_SITE_DATA__=JSON.parse("{\"lang\":\"en-US\",\"dir\":\"ltr\",\"title\":\"Saluki\",\"description\":\"A toolkit for building telemetry data planes in Rust.\",\"base\":\"/saluki/\",\"head\":[],\"router\":{\"prefetchLinks\":true},\"appearance\":true,\"themeConfig\":{\"search\":{\"provider\":\"local\"},\"footer\":{\"copyright\":\"Copyright © 2024-Present Datadog, Inc.\"},\"editLink\":{\"pattern\":\"https://github.com/DataDog/saluki/edit/main/docs/:path\",\"text\":\"Edit this page on GitHub\"},\"lastUpdated\":{\"text\":\"Updated at\",\"formatOptions\":{\"dateStyle\":\"full\",\"timeStyle\":\"medium\"}},\"nav\":[{\"text\":\"Home\",\"link\":\"/\"},{\"text\":\"Developer Guide\",\"link\":\"/development\"}],\"sidebar\":[{\"text\":\"Developer Guide\",\"items\":[{\"text\":\"Common Language\",\"link\":\"/development/common-language\"},{\"text\":\"Contributing\",\"link\":\"/development/contributing\"},{\"text\":\"Style Guide\",\"link\":\"/development/style-guide\"},{\"text\":\"Testing\",\"link\":\"/development/testing\"},{\"text\":\"Testing Patterns\",\"link\":\"/development/testing-patterns\"}]},{\"text\":\"Reference Docs\",\"items\":[{\"text\":\"Architecture\",\"link\":\"/reference/architecture\"},{\"text\":\"ADRs\",\"link\":\"/reference/adrs\"},{\"text\":\"Proposals\",\"link\":\"/reference/proposals\"}]},{\"text\":\"Agent Data Plane\",\"items\":[{\"text\":\"Overview\",\"link\":\"/agent-data-plane\"},{\"text\":\"Internal Telemetry\",\"link\":\"/agent-data-plane/telemetry\"},{\"text\":\"Memory Management\",\"link\":\"/agent-data-plane/memory\"},{\"text\":\"Releasing\",\"link\":\"/agent-data-plane/releasing\"},{\"text\":\"Configuration\",\"items\":[{\"text\":\"Configuration\",\"link\":\"/agent-data-plane/configuration/configuration\"}]}]}],\"outline\":{\"level\":[2,3]},\"socialLinks\":[{\"icon\":\"github\",\"link\":\"https://github.com/DataDog/saluki\"}]},\"locales\":{},\"scrollOffset\":134,\"cleanUrls\":true}");</script>
19+
<script>window.__VP_HASH_MAP__=JSON.parse("{\"agent-data-plane_configuration_configuration.md\":\"C8AZ1X-Q\",\"agent-data-plane_dogstatsd-top.md\":\"CkSK9oG6\",\"agent-data-plane_index.md\":\"BVPV06_B\",\"agent-data-plane_memory.md\":\"C_6eYlDd\",\"agent-data-plane_releasing.md\":\"BOooZnsS\",\"agent-data-plane_telemetry.md\":\"C3r33Lwm\",\"api-docs_index.md\":\"Db62scIJ\",\"development_common-language.md\":\"CcJHNFND\",\"development_contributing.md\":\"CL1oznKf\",\"development_index.md\":\"Br-SBwzt\",\"development_style-guide.md\":\"Dvenn5Zh\",\"development_testing-patterns.md\":\"BAc9DfMf\",\"development_testing.md\":\"BBGy8vdB\",\"index.md\":\"Cpj43Rve\",\"reference_adrs__template.md\":\"EC_XDB0E\",\"reference_adrs_index.md\":\"BorlLHbw\",\"reference_adrs_records_001-open-design-docs.md\":\"CwtgULXT\",\"reference_architecture_index.md\":\"BTUlvC2G\",\"reference_proposals_index.md\":\"FmDImXWX\"}");window.__VP_SITE_DATA__=JSON.parse("{\"lang\":\"en-US\",\"dir\":\"ltr\",\"title\":\"Saluki\",\"description\":\"A toolkit for building telemetry data planes in Rust.\",\"base\":\"/saluki/\",\"head\":[],\"router\":{\"prefetchLinks\":true},\"appearance\":true,\"themeConfig\":{\"search\":{\"provider\":\"local\"},\"footer\":{\"copyright\":\"Copyright © 2024-Present Datadog, Inc.\"},\"editLink\":{\"pattern\":\"https://github.com/DataDog/saluki/edit/main/docs/:path\",\"text\":\"Edit this page on GitHub\"},\"lastUpdated\":{\"text\":\"Updated at\",\"formatOptions\":{\"dateStyle\":\"full\",\"timeStyle\":\"medium\"}},\"nav\":[{\"text\":\"Home\",\"link\":\"/\"},{\"text\":\"Developer Guide\",\"link\":\"/development\"}],\"sidebar\":[{\"text\":\"Developer Guide\",\"items\":[{\"text\":\"Common Language\",\"link\":\"/development/common-language\"},{\"text\":\"Contributing\",\"link\":\"/development/contributing\"},{\"text\":\"Style Guide\",\"link\":\"/development/style-guide\"},{\"text\":\"Testing\",\"link\":\"/development/testing\"},{\"text\":\"Testing Patterns\",\"link\":\"/development/testing-patterns\"}]},{\"text\":\"Reference Docs\",\"items\":[{\"text\":\"Architecture\",\"link\":\"/reference/architecture\"},{\"text\":\"ADRs\",\"link\":\"/reference/adrs\"},{\"text\":\"Proposals\",\"link\":\"/reference/proposals\"}]},{\"text\":\"Agent Data Plane\",\"items\":[{\"text\":\"Overview\",\"link\":\"/agent-data-plane\"},{\"text\":\"Internal Telemetry\",\"link\":\"/agent-data-plane/telemetry\"},{\"text\":\"Memory Management\",\"link\":\"/agent-data-plane/memory\"},{\"text\":\"Releasing\",\"link\":\"/agent-data-plane/releasing\"},{\"text\":\"Configuration\",\"items\":[{\"text\":\"Configuration\",\"link\":\"/agent-data-plane/configuration/configuration\"}]}]}],\"outline\":{\"level\":[2,3]},\"socialLinks\":[{\"icon\":\"github\",\"link\":\"https://github.com/DataDog/saluki\"}]},\"locales\":{},\"scrollOffset\":134,\"cleanUrls\":true}");</script>
2020

2121
</body>
2222
</html>

agent-data-plane/configuration/configuration.html

Lines changed: 5 additions & 5 deletions
Large diffs are not rendered by default.

agent-data-plane/dogstatsd-top.html

Lines changed: 5 additions & 5 deletions
Large diffs are not rendered by default.

agent-data-plane/index.html

Lines changed: 5 additions & 5 deletions
Large diffs are not rendered by default.

agent-data-plane/memory.html

Lines changed: 5 additions & 5 deletions
Large diffs are not rendered by default.

agent-data-plane/releasing.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
<link rel="preload stylesheet" href="/saluki/assets/style.BktGeqBU.css" as="style">
1010
<link rel="preload stylesheet" href="/saluki/vp-icons.css" as="style">
1111

12-
<script type="module" src="/saluki/assets/app.B88nU-26.js"></script>
12+
<script type="module" src="/saluki/assets/app.CNnjeTMf.js"></script>
1313
<link rel="preload" href="/saluki/assets/inter-roman-latin.Di8DUHzh.woff2" as="font" type="font/woff2" crossorigin="">
14-
<link rel="modulepreload" href="/saluki/assets/chunks/theme.2_QP7gCO.js">
14+
<link rel="modulepreload" href="/saluki/assets/chunks/theme.Cms8fMcG.js">
1515
<link rel="modulepreload" href="/saluki/assets/chunks/framework.Chlm-uVU.js">
16-
<link rel="modulepreload" href="/saluki/assets/agent-data-plane_releasing.md.CPikMIB_.lean.js">
16+
<link rel="modulepreload" href="/saluki/assets/agent-data-plane_releasing.md.BOooZnsS.lean.js">
1717
<script id="check-dark-mode">(()=>{const e=localStorage.getItem("vitepress-theme-appearance")||"auto",a=window.matchMedia("(prefers-color-scheme: dark)").matches;(!e||e==="auto"?a:e==="dark")&&document.documentElement.classList.add("dark")})();</script>
1818
<script id="check-mac-os">document.documentElement.classList.toggle("mac",/Mac|iPhone|iPod|iPad/i.test(navigator.platform));</script>
1919
</head>
@@ -23,8 +23,8 @@
2323
<span class="line"><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;">rust-audit-info</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> /usr/local/bin/agent-data-plane</span></span>
2424
<span class="line"></span>
2525
<span class="line"><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"># Or scan it directly against the RustSec advisory database.</span></span>
26-
<span class="line"><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;">cargo</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> audit</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> bin</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> /usr/local/bin/agent-data-plane</span></span></code></pre></div><p>The <code>cargo-auditable</code> version is pinned in the <code>Makefile</code> (the <code>CARGO_TOOL_VERSION_cargo-auditable</code> variable), which the host and Linux Docker builds share. The Windows build pins the same version and its archive checksum separately in <code>ci/tooling/windows-build-adp.ps1</code>; bump both together.</p></div></div></main><footer class="VPDocFooter" data-v-39a288b8 data-v-e257564d><!--[--><!--]--><div class="edit-info" data-v-e257564d><div class="edit-link" data-v-e257564d><a class="VPLink link vp-external-link-icon no-icon edit-link-button" href="https://github.com/DataDog/saluki/edit/main/docs/agent-data-plane/releasing.md" target="_blank" rel="noreferrer" data-v-e257564d><!--[--><span class="vpi-square-pen edit-link-icon" data-v-e257564d></span> Edit this page on GitHub<!--]--></a></div><div class="last-updated" data-v-e257564d><p class="VPLastUpdated" data-v-e257564d data-v-e98dd255>Updated at: <time datetime="2026-08-11T15:56:57.000Z" data-v-e98dd255></time></p></div></div><nav class="prev-next" aria-labelledby="doc-footer-aria-label" data-v-e257564d><span class="visually-hidden" id="doc-footer-aria-label" data-v-e257564d>Pager</span><div class="pager" data-v-e257564d><a class="VPLink link pager-link prev" href="/saluki/agent-data-plane/memory" data-v-e257564d><!--[--><span class="desc" data-v-e257564d>Previous page</span><span class="title" data-v-e257564d>Memory Management</span><!--]--></a></div><div class="pager" data-v-e257564d><a class="VPLink link pager-link next" href="/saluki/agent-data-plane/configuration/configuration" data-v-e257564d><!--[--><span class="desc" data-v-e257564d>Next page</span><span class="title" data-v-e257564d>Configuration</span><!--]--></a></div></nav></footer><!--[--><!--]--></div></div></div><!--[--><!--]--></div></div><footer class="VPFooter has-sidebar" data-v-5d98c3a5 data-v-e315a0ad><div class="container" data-v-e315a0ad><!----><p class="copyright" data-v-e315a0ad>Copyright © 2024-Present Datadog, Inc.</p></div></footer><!--[--><!--]--></div></div>
27-
<script>window.__VP_HASH_MAP__=JSON.parse("{\"agent-data-plane_configuration_configuration.md\":\"C5t5IDyu\",\"agent-data-plane_dogstatsd-top.md\":\"lktrMO3v\",\"agent-data-plane_index.md\":\"DheTwieG\",\"agent-data-plane_memory.md\":\"BaCodENR\",\"agent-data-plane_releasing.md\":\"CPikMIB_\",\"agent-data-plane_telemetry.md\":\"iFdiIk4U\",\"api-docs_index.md\":\"BjRg96xF\",\"development_common-language.md\":\"CQTQvjj4\",\"development_contributing.md\":\"B3-x0y_n\",\"development_index.md\":\"BS6n8YEx\",\"development_style-guide.md\":\"wX-WjxDd\",\"development_testing-patterns.md\":\"BmX8YpX_\",\"development_testing.md\":\"CjM81sGR\",\"index.md\":\"CZkUxKiB\",\"reference_adrs__template.md\":\"DTM5F4k-\",\"reference_adrs_index.md\":\"ChpyntGV\",\"reference_adrs_records_001-open-design-docs.md\":\"BSl5x1YC\",\"reference_architecture_index.md\":\"CZtIYODd\",\"reference_proposals_index.md\":\"u0SYvrGj\"}");window.__VP_SITE_DATA__=JSON.parse("{\"lang\":\"en-US\",\"dir\":\"ltr\",\"title\":\"Saluki\",\"description\":\"A toolkit for building telemetry data planes in Rust.\",\"base\":\"/saluki/\",\"head\":[],\"router\":{\"prefetchLinks\":true},\"appearance\":true,\"themeConfig\":{\"search\":{\"provider\":\"local\"},\"footer\":{\"copyright\":\"Copyright © 2024-Present Datadog, Inc.\"},\"editLink\":{\"pattern\":\"https://github.com/DataDog/saluki/edit/main/docs/:path\",\"text\":\"Edit this page on GitHub\"},\"lastUpdated\":{\"text\":\"Updated at\",\"formatOptions\":{\"dateStyle\":\"full\",\"timeStyle\":\"medium\"}},\"nav\":[{\"text\":\"Home\",\"link\":\"/\"},{\"text\":\"Developer Guide\",\"link\":\"/development\"}],\"sidebar\":[{\"text\":\"Developer Guide\",\"items\":[{\"text\":\"Common Language\",\"link\":\"/development/common-language\"},{\"text\":\"Contributing\",\"link\":\"/development/contributing\"},{\"text\":\"Style Guide\",\"link\":\"/development/style-guide\"},{\"text\":\"Testing\",\"link\":\"/development/testing\"},{\"text\":\"Testing Patterns\",\"link\":\"/development/testing-patterns\"}]},{\"text\":\"Reference Docs\",\"items\":[{\"text\":\"Architecture\",\"link\":\"/reference/architecture\"},{\"text\":\"ADRs\",\"link\":\"/reference/adrs\"},{\"text\":\"Proposals\",\"link\":\"/reference/proposals\"}]},{\"text\":\"Agent Data Plane\",\"items\":[{\"text\":\"Overview\",\"link\":\"/agent-data-plane\"},{\"text\":\"Internal Telemetry\",\"link\":\"/agent-data-plane/telemetry\"},{\"text\":\"Memory Management\",\"link\":\"/agent-data-plane/memory\"},{\"text\":\"Releasing\",\"link\":\"/agent-data-plane/releasing\"},{\"text\":\"Configuration\",\"items\":[{\"text\":\"Configuration\",\"link\":\"/agent-data-plane/configuration/configuration\"}]}]}],\"outline\":{\"level\":[2,3]},\"socialLinks\":[{\"icon\":\"github\",\"link\":\"https://github.com/DataDog/saluki\"}]},\"locales\":{},\"scrollOffset\":134,\"cleanUrls\":true}");</script>
26+
<span class="line"><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;">cargo</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> audit</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> bin</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> /usr/local/bin/agent-data-plane</span></span></code></pre></div><p>The <code>cargo-auditable</code> version is pinned in the <code>Makefile</code> (the <code>CARGO_TOOL_VERSION_cargo-auditable</code> variable), which the host and Linux Docker builds share. The Windows build pins the same version and its archive checksum separately in <code>ci/tooling/windows-build-adp.ps1</code>; bump both together.</p></div></div></main><footer class="VPDocFooter" data-v-39a288b8 data-v-e257564d><!--[--><!--]--><div class="edit-info" data-v-e257564d><div class="edit-link" data-v-e257564d><a class="VPLink link vp-external-link-icon no-icon edit-link-button" href="https://github.com/DataDog/saluki/edit/main/docs/agent-data-plane/releasing.md" target="_blank" rel="noreferrer" data-v-e257564d><!--[--><span class="vpi-square-pen edit-link-icon" data-v-e257564d></span> Edit this page on GitHub<!--]--></a></div><div class="last-updated" data-v-e257564d><p class="VPLastUpdated" data-v-e257564d data-v-e98dd255>Updated at: <time datetime="2026-08-11T18:27:14.000Z" data-v-e98dd255></time></p></div></div><nav class="prev-next" aria-labelledby="doc-footer-aria-label" data-v-e257564d><span class="visually-hidden" id="doc-footer-aria-label" data-v-e257564d>Pager</span><div class="pager" data-v-e257564d><a class="VPLink link pager-link prev" href="/saluki/agent-data-plane/memory" data-v-e257564d><!--[--><span class="desc" data-v-e257564d>Previous page</span><span class="title" data-v-e257564d>Memory Management</span><!--]--></a></div><div class="pager" data-v-e257564d><a class="VPLink link pager-link next" href="/saluki/agent-data-plane/configuration/configuration" data-v-e257564d><!--[--><span class="desc" data-v-e257564d>Next page</span><span class="title" data-v-e257564d>Configuration</span><!--]--></a></div></nav></footer><!--[--><!--]--></div></div></div><!--[--><!--]--></div></div><footer class="VPFooter has-sidebar" data-v-5d98c3a5 data-v-e315a0ad><div class="container" data-v-e315a0ad><!----><p class="copyright" data-v-e315a0ad>Copyright © 2024-Present Datadog, Inc.</p></div></footer><!--[--><!--]--></div></div>
27+
<script>window.__VP_HASH_MAP__=JSON.parse("{\"agent-data-plane_configuration_configuration.md\":\"C8AZ1X-Q\",\"agent-data-plane_dogstatsd-top.md\":\"CkSK9oG6\",\"agent-data-plane_index.md\":\"BVPV06_B\",\"agent-data-plane_memory.md\":\"C_6eYlDd\",\"agent-data-plane_releasing.md\":\"BOooZnsS\",\"agent-data-plane_telemetry.md\":\"C3r33Lwm\",\"api-docs_index.md\":\"Db62scIJ\",\"development_common-language.md\":\"CcJHNFND\",\"development_contributing.md\":\"CL1oznKf\",\"development_index.md\":\"Br-SBwzt\",\"development_style-guide.md\":\"Dvenn5Zh\",\"development_testing-patterns.md\":\"BAc9DfMf\",\"development_testing.md\":\"BBGy8vdB\",\"index.md\":\"Cpj43Rve\",\"reference_adrs__template.md\":\"EC_XDB0E\",\"reference_adrs_index.md\":\"BorlLHbw\",\"reference_adrs_records_001-open-design-docs.md\":\"CwtgULXT\",\"reference_architecture_index.md\":\"BTUlvC2G\",\"reference_proposals_index.md\":\"FmDImXWX\"}");window.__VP_SITE_DATA__=JSON.parse("{\"lang\":\"en-US\",\"dir\":\"ltr\",\"title\":\"Saluki\",\"description\":\"A toolkit for building telemetry data planes in Rust.\",\"base\":\"/saluki/\",\"head\":[],\"router\":{\"prefetchLinks\":true},\"appearance\":true,\"themeConfig\":{\"search\":{\"provider\":\"local\"},\"footer\":{\"copyright\":\"Copyright © 2024-Present Datadog, Inc.\"},\"editLink\":{\"pattern\":\"https://github.com/DataDog/saluki/edit/main/docs/:path\",\"text\":\"Edit this page on GitHub\"},\"lastUpdated\":{\"text\":\"Updated at\",\"formatOptions\":{\"dateStyle\":\"full\",\"timeStyle\":\"medium\"}},\"nav\":[{\"text\":\"Home\",\"link\":\"/\"},{\"text\":\"Developer Guide\",\"link\":\"/development\"}],\"sidebar\":[{\"text\":\"Developer Guide\",\"items\":[{\"text\":\"Common Language\",\"link\":\"/development/common-language\"},{\"text\":\"Contributing\",\"link\":\"/development/contributing\"},{\"text\":\"Style Guide\",\"link\":\"/development/style-guide\"},{\"text\":\"Testing\",\"link\":\"/development/testing\"},{\"text\":\"Testing Patterns\",\"link\":\"/development/testing-patterns\"}]},{\"text\":\"Reference Docs\",\"items\":[{\"text\":\"Architecture\",\"link\":\"/reference/architecture\"},{\"text\":\"ADRs\",\"link\":\"/reference/adrs\"},{\"text\":\"Proposals\",\"link\":\"/reference/proposals\"}]},{\"text\":\"Agent Data Plane\",\"items\":[{\"text\":\"Overview\",\"link\":\"/agent-data-plane\"},{\"text\":\"Internal Telemetry\",\"link\":\"/agent-data-plane/telemetry\"},{\"text\":\"Memory Management\",\"link\":\"/agent-data-plane/memory\"},{\"text\":\"Releasing\",\"link\":\"/agent-data-plane/releasing\"},{\"text\":\"Configuration\",\"items\":[{\"text\":\"Configuration\",\"link\":\"/agent-data-plane/configuration/configuration\"}]}]}],\"outline\":{\"level\":[2,3]},\"socialLinks\":[{\"icon\":\"github\",\"link\":\"https://github.com/DataDog/saluki\"}]},\"locales\":{},\"scrollOffset\":134,\"cleanUrls\":true}");</script>
2828

2929
</body>
3030
</html>

0 commit comments

Comments
 (0)