Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • dewif
  • ws2p_v2
  • dubp_v13
  • authentication_file_format
  • graphql_api_rfc
  • messages_encryption_and_signature
  • ascii_armor_messages
  • ws2p_v1
  • rfc5-duniter-protocol-rework
  • dip/0001
  • dip/0002
12 results

0009_Duniter_Blockchain_Protocol_V11.md

Blame
  • build.rs 911 B
    // Copyright 2021 Axiom-Team
    //
    // This file is part of Duniter-v2S.
    //
    // Duniter-v2S is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, version 3 of the License.
    //
    // Duniter-v2S is distributed in the hope that it will be useful,
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with Duniter-v2S. If not, see <https://www.gnu.org/licenses/>.
    
    fn main() {
        #[cfg(feature = "std")]
        {
            substrate_wasm_builder::WasmBuilder::new()
                .with_current_project()
                .export_heap_base()
                .import_memory()
                .build();
        }
    }