You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
diff --git a/Cargo.lock b/Cargo.lock
index 4679bcd..011829c 100644
--- a/Cargo.lock+++ b/Cargo.lock@@ -1,3 +1,7 @@+# SPDX-FileCopyrightText: 2025 John Doe+#+# SPDX-License-Identifier: Apache-2.0 OR MIT+
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
Next, update Cargo.lock:
cargo update
The result is the following:
diff --git a/Cargo.lock b/Cargo.lock
index 011829c..c817aa7 100644
--- a/Cargo.lock+++ b/Cargo.lock@@ -1,9 +1,8 @@+# This file is automatically @generated by Cargo.+# It is not intended for manual editing.
# SPDX-FileCopyrightText: 2025 John Doe
#
# SPDX-License-Identifier: Apache-2.0 OR MIT
--# This file is automatically @generated by Cargo.-# It is not intended for manual editing.
version = 4
[[package]]
As the result, cargo update changes Cargo.lock to start with the notification that the file is generated. Cargo.lock is not intended to be edited manually, so I think it should be uncommentable.
The text was updated successfully, but these errors were encountered:
At #1060,
Cargo.lock
was changed to allow Python-style comments.The following is the beginning of
Cargo.lock
:First, add copyright and licensing into the headers of
Cargo.lock
:The result is the following:
Next, update
Cargo.lock
:The result is the following:
As the result,
cargo update
changesCargo.lock
to start with the notification that the file is generated.Cargo.lock
is not intended to be edited manually, so I think it should be uncommentable.The text was updated successfully, but these errors were encountered: