rust: Add copyright notice headers to source files

This commit is contained in:
Paweł Bylica 2019-04-24 16:21:43 +02:00
parent 39162766df
commit 5112561d85
No known key found for this signature in database
GPG Key ID: 7A0C037434FE77EF
5 changed files with 23 additions and 0 deletions

View File

@ -1,3 +1,7 @@
# EVMC: Ethereum Client-VM Connector API.
# Copyright 2019 The EVMC Authors.
# Licensed under the Apache License, Version 2.0.
[package]
name = "evmc-sys"
version = "6.2.0-dev"

View File

@ -1,3 +1,8 @@
/* EVMC: Ethereum Client-VM Connector API.
* Copyright 2019 The EVMC Authors.
* Licensed under the Apache License, Version 2.0.
*/
extern crate bindgen;
use std::env;

View File

@ -1,3 +1,8 @@
/* EVMC: Ethereum Client-VM Connector API.
* Copyright 2019 The EVMC Authors.
* Licensed under the Apache License, Version 2.0.
*/
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]

View File

@ -1,3 +1,7 @@
# EVMC: Ethereum Client-VM Connector API.
# Copyright 2019 The EVMC Authors.
# Licensed under the Apache License, Version 2.0.
[package]
name = "evmc-vm"
version = "6.2.0-dev"

View File

@ -1,3 +1,8 @@
/* EVMC: Ethereum Client-VM Connector API.
* Copyright 2019 The EVMC Authors.
* Licensed under the Apache License, Version 2.0.
*/
pub extern crate evmc_sys;
pub use evmc_sys as ffi;