about summary refs log tree commit diff
path: root/tvix/store/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/store/src/lib.rs')
-rw-r--r--tvix/store/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/tvix/store/src/lib.rs b/tvix/store/src/lib.rs
index e1517609d51c..5f1642ce20e4 100644
--- a/tvix/store/src/lib.rs
+++ b/tvix/store/src/lib.rs
@@ -9,6 +9,9 @@ pub mod utils;
 #[cfg(test)]
 mod tests;
 
+// Used as user agent in various HTTP Clients
+const USER_AGENT: &str = concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION"));
+
 // That's what the rstest_reuse README asks us do, and fails about being unable
 // to find rstest_reuse in crate root.
 #[cfg(test)]