summaryrefslogtreecommitdiff
path: root/rust
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2025-03-28 16:00:21 -0400
committerJordan Wiens <jordan@psifertex.com>2025-03-28 16:00:21 -0400
commitf77dbcea6074966d81a44e2ce0dd83671a056c4d (patch)
tree655a00ea5015dc99a406362e41d7daf7954fe1f7 /rust
parent7b12d8d25003ea7bcb06985d558af35b45726088 (diff)
belated copyright year update
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_reader.rs2
-rw-r--r--rust/src/binary_view.rs2
-rw-r--r--rust/src/binary_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 265bf79a..310f82ba 100644
--- a/rust/LICENSE
+++ b/rust/LICENSE
@@ -1,4 +1,4 @@
-Copyright 2021-2024 Vector 35 Inc.
+Copyright 2021-2025 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 41395e0d..3573f1fb 100644
--- a/rust/src/architecture.rs
+++ b/rust/src/architecture.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 0420afbf..c818d5b9 100644
--- a/rust/src/background_task.rs
+++ b/rust/src/background_task.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 8846a90b..d12bb3e9 100644
--- a/rust/src/basic_block.rs
+++ b/rust/src/basic_block.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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_reader.rs b/rust/src/binary_reader.rs
index 1ee4e73e..e96e552a 100644
--- a/rust/src/binary_reader.rs
+++ b/rust/src/binary_reader.rs
@@ -1,4 +1,4 @@
-// Copyright 2022-2024 Vector 35 Inc.
+// Copyright 2022-2025 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 aa7c65e6..db4c92d7 100644
--- a/rust/src/binary_view.rs
+++ b/rust/src/binary_view.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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_writer.rs b/rust/src/binary_writer.rs
index e4387d70..176a54d8 100644
--- a/rust/src/binary_writer.rs
+++ b/rust/src/binary_writer.rs
@@ -1,4 +1,4 @@
-// Copyright 2022-2024 Vector 35 Inc.
+// Copyright 2022-2025 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 9c1493e1..2fb282e0 100644
--- a/rust/src/calling_convention.rs
+++ b/rust/src/calling_convention.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 4695d17e..48a91164 100644
--- a/rust/src/command.rs
+++ b/rust/src/command.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 4d53bd98..a43bbd4b 100644
--- a/rust/src/custom_binary_view.rs
+++ b/rust/src/custom_binary_view.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 5b4d6515..5b7d1ae6 100644
--- a/rust/src/data_buffer.rs
+++ b/rust/src/data_buffer.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 11d5f249..34daeac1 100644
--- a/rust/src/debuginfo.rs
+++ b/rust/src/debuginfo.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 6e303fac..e4d0be1d 100644
--- a/rust/src/demangle.rs
+++ b/rust/src/demangle.rs
@@ -1,4 +1,4 @@
-// Copyright 2022-2024 Vector 35 Inc.
+// Copyright 2022-2025 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 94f76f96..9dfd160f 100644
--- a/rust/src/disassembly.rs
+++ b/rust/src/disassembly.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 01835912..6b56407f 100644
--- a/rust/src/ffi.rs
+++ b/rust/src/ffi.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 3f324710..12d25ff0 100644
--- a/rust/src/file_accessor.rs
+++ b/rust/src/file_accessor.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 fbbadcda..f1923b40 100644
--- a/rust/src/file_metadata.rs
+++ b/rust/src/file_metadata.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 8c483958..c8a9e4a7 100644
--- a/rust/src/flowgraph.rs
+++ b/rust/src/flowgraph.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 66f71e5f..1f22512c 100644
--- a/rust/src/function.rs
+++ b/rust/src/function.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 ce65f54d..fb910d7c 100644
--- a/rust/src/headless.rs
+++ b/rust/src/headless.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 151e9f7c..1546bc5a 100644
--- a/rust/src/interaction.rs
+++ b/rust/src/interaction.rs
@@ -1,4 +1,4 @@
-// Copyright 2022-2024 Vector 35 Inc.
+// Copyright 2022-2025 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 924ccbfe..a3df0cd3 100644
--- a/rust/src/lib.rs
+++ b/rust/src/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 341927db..ca35d525 100644
--- a/rust/src/linear_view.rs
+++ b/rust/src/linear_view.rs
@@ -1,4 +1,4 @@
-// Copyright 2022-2024 Vector 35 Inc.
+// Copyright 2022-2025 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 750bcfd1..d6303c13 100644
--- a/rust/src/low_level_il.rs
+++ b/rust/src/low_level_il.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 8096c1aa..ac0be449 100644
--- a/rust/src/low_level_il/block.rs
+++ b/rust/src/low_level_il/block.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 7bae22c1..fd403c76 100644
--- a/rust/src/low_level_il/expression.rs
+++ b/rust/src/low_level_il/expression.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 fea467d0..9fdc17f5 100644
--- a/rust/src/low_level_il/function.rs
+++ b/rust/src/low_level_il/function.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 b023ad49..977dcff4 100644
--- a/rust/src/low_level_il/instruction.rs
+++ b/rust/src/low_level_il/instruction.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 430cb0f7..7401c99b 100644
--- a/rust/src/low_level_il/lifting.rs
+++ b/rust/src/low_level_il/lifting.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 f3c075ad..b1bc8ef4 100644
--- a/rust/src/low_level_il/operation.rs
+++ b/rust/src/low_level_il/operation.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 cdbaf25d..72f61430 100644
--- a/rust/src/platform.rs
+++ b/rust/src/platform.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 56fd4e8c..84168876 100644
--- a/rust/src/rc.rs
+++ b/rust/src/rc.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 2c63693d..c88ef9b0 100644
--- a/rust/src/section.rs
+++ b/rust/src/section.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 b371e959..61cb3407 100644
--- a/rust/src/segment.rs
+++ b/rust/src/segment.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 a2deef57..8c64f314 100644
--- a/rust/src/settings.rs
+++ b/rust/src/settings.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 3bda6a81..f9224851 100644
--- a/rust/src/string.rs
+++ b/rust/src/string.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 9c29af17..2ff92db5 100644
--- a/rust/src/symbol.rs
+++ b/rust/src/symbol.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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 3b20bc04..2db3a58c 100644
--- a/rust/src/tags.rs
+++ b/rust/src/tags.rs
@@ -1,4 +1,4 @@
-// Copyright 2022-2024 Vector 35 Inc.
+// Copyright 2022-2025 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 35db62ff..cb05a69d 100644
--- a/rust/src/types.rs
+++ b/rust/src/types.rs
@@ -1,4 +1,4 @@
-// Copyright 2021-2024 Vector 35 Inc.
+// Copyright 2021-2025 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.