summaryrefslogtreecommitdiff
path: root/rust
diff options
context:
space:
mode:
authorJordan Wiens <github@psifertex.com>2026-01-01 12:30:15 -0500
committerJordan Wiens <github@psifertex.com>2026-01-01 12:30:15 -0500
commitd9c58e94a0c86499bc481baccad73f2857678c29 (patch)
tree3f03c98872c3e683e5567bbd16fb1153096864fb /rust
parent0a08849a696164b34841b361f65b7f6fb9ff51d8 (diff)
update copyrights for 2026
Diffstat (limited to 'rust')
-rw-r--r--rust/LICENSE2
-rw-r--r--rust/src/architecture.rs2
-rw-r--r--rust/src/background_task.rs2
-rw-r--r--rust/src/basic_block.rs2
-rw-r--r--rust/src/binary_view.rs2
-rw-r--r--rust/src/binary_view/reader.rs2
-rw-r--r--rust/src/binary_view/writer.rs2
-rw-r--r--rust/src/calling_convention.rs2
-rw-r--r--rust/src/command.rs2
-rw-r--r--rust/src/custom_binary_view.rs2
-rw-r--r--rust/src/data_buffer.rs2
-rw-r--r--rust/src/debuginfo.rs2
-rw-r--r--rust/src/demangle.rs2
-rw-r--r--rust/src/disassembly.rs2
-rw-r--r--rust/src/ffi.rs2
-rw-r--r--rust/src/file_accessor.rs2
-rw-r--r--rust/src/file_metadata.rs2
-rw-r--r--rust/src/flowgraph.rs2
-rw-r--r--rust/src/function.rs2
-rw-r--r--rust/src/headless.rs2
-rw-r--r--rust/src/interaction.rs2
-rw-r--r--rust/src/lib.rs2
-rw-r--r--rust/src/linear_view.rs2
-rw-r--r--rust/src/low_level_il.rs2
-rw-r--r--rust/src/low_level_il/block.rs2
-rw-r--r--rust/src/low_level_il/expression.rs2
-rw-r--r--rust/src/low_level_il/function.rs2
-rw-r--r--rust/src/low_level_il/instruction.rs2
-rw-r--r--rust/src/low_level_il/lifting.rs2
-rw-r--r--rust/src/low_level_il/operation.rs2
-rw-r--r--rust/src/platform.rs2
-rw-r--r--rust/src/rc.rs2
-rw-r--r--rust/src/section.rs2
-rw-r--r--rust/src/segment.rs2
-rw-r--r--rust/src/settings.rs2
-rw-r--r--rust/src/string.rs2
-rw-r--r--rust/src/symbol.rs2
-rw-r--r--rust/src/tags.rs2
-rw-r--r--rust/src/types.rs2
39 files changed, 39 insertions, 39 deletions
diff --git a/rust/LICENSE b/rust/LICENSE
index 310f82ba..ebce27b8 100644
--- a/rust/LICENSE
+++ b/rust/LICENSE
@@ -1,4 +1,4 @@
-Copyright 2021-2025 Vector 35 Inc.
+Copyright 2021-2026 Vector 35 Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/rust/src/architecture.rs b/rust/src/architecture.rs
index 297fabf8..1a6253b0 100644
--- a/rust/src/architecture.rs
+++ b/rust/src/architecture.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/background_task.rs b/rust/src/background_task.rs
index 4899df8c..1e993355 100644
--- a/rust/src/background_task.rs
+++ b/rust/src/background_task.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/basic_block.rs b/rust/src/basic_block.rs
index 0bc2d95e..60ce2416 100644
--- a/rust/src/basic_block.rs
+++ b/rust/src/basic_block.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/binary_view.rs b/rust/src/binary_view.rs
index 4e5c7dfb..30733516 100644
--- a/rust/src/binary_view.rs
+++ b/rust/src/binary_view.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/binary_view/reader.rs b/rust/src/binary_view/reader.rs
index 3ec105fc..95e1434a 100644
--- a/rust/src/binary_view/reader.rs
+++ b/rust/src/binary_view/reader.rs
@@ -1,4 +1,4 @@
-// Copyright 2022-2025 Vector 35 Inc.
+// Copyright 2022-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/binary_view/writer.rs b/rust/src/binary_view/writer.rs
index ca570761..512418e4 100644
--- a/rust/src/binary_view/writer.rs
+++ b/rust/src/binary_view/writer.rs
@@ -1,4 +1,4 @@
-// Copyright 2022-2025 Vector 35 Inc.
+// Copyright 2022-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/calling_convention.rs b/rust/src/calling_convention.rs
index 04d85396..4dc54a5b 100644
--- a/rust/src/calling_convention.rs
+++ b/rust/src/calling_convention.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/command.rs b/rust/src/command.rs
index eecdf4a8..660e265b 100644
--- a/rust/src/command.rs
+++ b/rust/src/command.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/custom_binary_view.rs b/rust/src/custom_binary_view.rs
index a0b1df21..aff7b3b6 100644
--- a/rust/src/custom_binary_view.rs
+++ b/rust/src/custom_binary_view.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/data_buffer.rs b/rust/src/data_buffer.rs
index 7a5e543c..79b3b20b 100644
--- a/rust/src/data_buffer.rs
+++ b/rust/src/data_buffer.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/debuginfo.rs b/rust/src/debuginfo.rs
index 02bf1ebb..5879f40d 100644
--- a/rust/src/debuginfo.rs
+++ b/rust/src/debuginfo.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/demangle.rs b/rust/src/demangle.rs
index 50878bda..1f9f8941 100644
--- a/rust/src/demangle.rs
+++ b/rust/src/demangle.rs
@@ -1,4 +1,4 @@
-// Copyright 2022-2025 Vector 35 Inc.
+// Copyright 2022-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/disassembly.rs b/rust/src/disassembly.rs
index 138bcd8a..cb9bf6a1 100644
--- a/rust/src/disassembly.rs
+++ b/rust/src/disassembly.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/ffi.rs b/rust/src/ffi.rs
index 6b56407f..d337df34 100644
--- a/rust/src/ffi.rs
+++ b/rust/src/ffi.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/file_accessor.rs b/rust/src/file_accessor.rs
index 2ba7938f..dd6626f6 100644
--- a/rust/src/file_accessor.rs
+++ b/rust/src/file_accessor.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/file_metadata.rs b/rust/src/file_metadata.rs
index dc9d36ff..20f0aff5 100644
--- a/rust/src/file_metadata.rs
+++ b/rust/src/file_metadata.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/flowgraph.rs b/rust/src/flowgraph.rs
index 02a79fa3..eab6e84d 100644
--- a/rust/src/flowgraph.rs
+++ b/rust/src/flowgraph.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/function.rs b/rust/src/function.rs
index 06da39dc..e5516d14 100644
--- a/rust/src/function.rs
+++ b/rust/src/function.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/headless.rs b/rust/src/headless.rs
index 5910cd85..73bc2396 100644
--- a/rust/src/headless.rs
+++ b/rust/src/headless.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/interaction.rs b/rust/src/interaction.rs
index 1b38483a..5fbb91f9 100644
--- a/rust/src/interaction.rs
+++ b/rust/src/interaction.rs
@@ -1,4 +1,4 @@
-// Copyright 2022-2025 Vector 35 Inc.
+// Copyright 2022-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/lib.rs b/rust/src/lib.rs
index ba654f09..769280fb 100644
--- a/rust/src/lib.rs
+++ b/rust/src/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/linear_view.rs b/rust/src/linear_view.rs
index db164278..98e51b28 100644
--- a/rust/src/linear_view.rs
+++ b/rust/src/linear_view.rs
@@ -1,4 +1,4 @@
-// Copyright 2022-2025 Vector 35 Inc.
+// Copyright 2022-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/low_level_il.rs b/rust/src/low_level_il.rs
index 78d4ce9c..12a74106 100644
--- a/rust/src/low_level_il.rs
+++ b/rust/src/low_level_il.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/low_level_il/block.rs b/rust/src/low_level_il/block.rs
index d3b1f99b..7f83ba08 100644
--- a/rust/src/low_level_il/block.rs
+++ b/rust/src/low_level_il/block.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/low_level_il/expression.rs b/rust/src/low_level_il/expression.rs
index de69e112..1e4ab21b 100644
--- a/rust/src/low_level_il/expression.rs
+++ b/rust/src/low_level_il/expression.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/low_level_il/function.rs b/rust/src/low_level_il/function.rs
index bd5332ea..32e1f921 100644
--- a/rust/src/low_level_il/function.rs
+++ b/rust/src/low_level_il/function.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/low_level_il/instruction.rs b/rust/src/low_level_il/instruction.rs
index 2d96d121..720117fb 100644
--- a/rust/src/low_level_il/instruction.rs
+++ b/rust/src/low_level_il/instruction.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/low_level_il/lifting.rs b/rust/src/low_level_il/lifting.rs
index 91a3b53e..bab0906c 100644
--- a/rust/src/low_level_il/lifting.rs
+++ b/rust/src/low_level_il/lifting.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/low_level_il/operation.rs b/rust/src/low_level_il/operation.rs
index 2f081b5e..f8bbc3c6 100644
--- a/rust/src/low_level_il/operation.rs
+++ b/rust/src/low_level_il/operation.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/platform.rs b/rust/src/platform.rs
index ed4f49f4..43548032 100644
--- a/rust/src/platform.rs
+++ b/rust/src/platform.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/rc.rs b/rust/src/rc.rs
index 71d72ceb..7635455a 100644
--- a/rust/src/rc.rs
+++ b/rust/src/rc.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/section.rs b/rust/src/section.rs
index ca27a3ad..7668f548 100644
--- a/rust/src/section.rs
+++ b/rust/src/section.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/segment.rs b/rust/src/segment.rs
index 61cb3407..348d8f67 100644
--- a/rust/src/segment.rs
+++ b/rust/src/segment.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/settings.rs b/rust/src/settings.rs
index 3882ce4d..6718c7e9 100644
--- a/rust/src/settings.rs
+++ b/rust/src/settings.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/string.rs b/rust/src/string.rs
index 8505cbf5..001fc3e3 100644
--- a/rust/src/string.rs
+++ b/rust/src/string.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/symbol.rs b/rust/src/symbol.rs
index fac8cae5..4239dd4d 100644
--- a/rust/src/symbol.rs
+++ b/rust/src/symbol.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/tags.rs b/rust/src/tags.rs
index a56b7a18..2af0be89 100644
--- a/rust/src/tags.rs
+++ b/rust/src/tags.rs
@@ -1,4 +1,4 @@
-// Copyright 2022-2025 Vector 35 Inc.
+// Copyright 2022-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/rust/src/types.rs b/rust/src/types.rs
index f6722c15..4f6f82d2 100644
--- a/rust/src/types.rs
+++ b/rust/src/types.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2025 Vector 35 Inc.
+// Copyright 2021-2026 Vector 35 Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.