1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 23:34:47 -05:00

chore: add Deno copyright headers to all rust files (#9909)

This commit is contained in:
Aaron O'Mullan 2021-03-27 01:26:27 +01:00 committed by GitHub
parent 699eeebc12
commit fa67aeb026
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 12 additions and 0 deletions

View file

@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8; use rusty_v8 as v8;
use serde::Deserialize; use serde::Deserialize;

View file

@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8; use rusty_v8 as v8;
use serde::de::{self, Visitor}; use serde::de::{self, Visitor};
use serde::Deserialize; use serde::Deserialize;

View file

@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use std::fmt::{self, Display}; use std::fmt::{self, Display};
use serde::{de, ser}; use serde::{de, ser};

View file

@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8; use rusty_v8 as v8;
use std::collections::HashMap; use std::collections::HashMap;

View file

@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
mod de; mod de;
mod error; mod error;
mod keys; mod keys;

View file

@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8; use rusty_v8 as v8;
use std::fmt; use std::fmt;

View file

@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8; use rusty_v8 as v8;
// TODO: maybe add a Payload type that holds scope & v8::Value // TODO: maybe add a Payload type that holds scope & v8::Value

View file

@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8; use rusty_v8 as v8;
use serde::ser; use serde::ser;
use serde::ser::{Impossible, Serialize}; use serde::ser::{Impossible, Serialize};

View file

@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8; use rusty_v8 as v8;
use std::sync::Once; use std::sync::Once;

View file

@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8; use rusty_v8 as v8;
use serde::Deserialize; use serde::Deserialize;

View file

@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8; use rusty_v8 as v8;
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};

View file

@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8; use rusty_v8 as v8;
use serde::Serialize; use serde::Serialize;