mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 15:24:46 -05:00
chore: add Deno copyright headers to all rust files (#9909)
This commit is contained in:
parent
699eeebc12
commit
fa67aeb026
12 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||
use rusty_v8 as v8;
|
||||
|
||||
use serde::Deserialize;
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||
use rusty_v8 as v8;
|
||||
use serde::de::{self, Visitor};
|
||||
use serde::Deserialize;
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||
use std::fmt::{self, Display};
|
||||
|
||||
use serde::{de, ser};
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||
use rusty_v8 as v8;
|
||||
|
||||
use std::collections::HashMap;
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||
mod de;
|
||||
mod error;
|
||||
mod keys;
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||
use rusty_v8 as v8;
|
||||
|
||||
use std::fmt;
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||
use rusty_v8 as v8;
|
||||
|
||||
// TODO: maybe add a Payload type that holds scope & v8::Value
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||
use rusty_v8 as v8;
|
||||
use serde::ser;
|
||||
use serde::ser::{Impossible, Serialize};
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||
use rusty_v8 as v8;
|
||||
use std::sync::Once;
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||
use rusty_v8 as v8;
|
||||
|
||||
use serde::Deserialize;
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||
use rusty_v8 as v8;
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||
use rusty_v8 as v8;
|
||||
|
||||
use serde::Serialize;
|
||||
|
|
Loading…
Reference in a new issue