Copyright Information
Project Copyright
NeoRust is Copyright © 2020-2025 R3E Network and contributors.
License
NeoRust is dual-licensed under:
- MIT License (LICENSE-MIT)
- Apache License, Version 2.0 (LICENSE-APACHE)
Copyright Format
When adding new files to the NeoRust project, please include the appropriate copyright header:
For Rust files:
#![allow(unused)] fn main() { // Copyright (c) 2023-2025 R3E Network // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. }
For Markdown/Documentation files:
# Title
Copyright © 2020-2025 R3E Network. All rights reserved.
[Main content starts here...]
For Shell Scripts:
#!/bin/bash
# Copyright (c) 2020-2025 R3E Network
# Licensed under MIT or Apache-2.0 license. See LICENSE files for details.
[Script content starts here...]
Annual Updates
The copyright year range should be updated at the beginning of each new year. Update the following files:
- LICENSE-MIT (update the year range)
- COPYRIGHT (update the year range)
- README.md (update the copyright notice)
- docs/book.toml (update authors field)
- Cargo.toml (update authors field)
- neo-cli/Cargo.toml (update authors field)
- Any other specific files with copyright notices