mirror of https://github.com/status-im/evmc.git
rust: Add copyright notice headers to source files
This commit is contained in:
parent
39162766df
commit
5112561d85
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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)]
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue