Skip to content

Commit

Permalink
chore: add Deno copyright headers to all rust files (denoland#9909)
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronO committed Mar 27, 2021
1 parent 699eeeb commit fa67aeb
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions serde_v8/examples/basic.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8;

use serde::Deserialize;
Expand Down
1 change: 1 addition & 0 deletions serde_v8/src/de.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
1 change: 1 addition & 0 deletions serde_v8/src/error.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use std::fmt::{self, Display};

use serde::{de, ser};
Expand Down
1 change: 1 addition & 0 deletions serde_v8/src/keys.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8;

use std::collections::HashMap;
Expand Down
1 change: 1 addition & 0 deletions serde_v8/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
mod de;
mod error;
mod keys;
Expand Down
1 change: 1 addition & 0 deletions serde_v8/src/magic.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8;

use std::fmt;
Expand Down
1 change: 1 addition & 0 deletions serde_v8/src/payload.rs
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions serde_v8/src/ser.rs
Original file line number Diff line number Diff line change
@@ -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};
Expand Down
1 change: 1 addition & 0 deletions serde_v8/src/utils.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8;
use std::sync::Once;

Expand Down
1 change: 1 addition & 0 deletions serde_v8/tests/de.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8;

use serde::Deserialize;
Expand Down
1 change: 1 addition & 0 deletions serde_v8/tests/magic.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8;

use serde::{Deserialize, Serialize};
Expand Down
1 change: 1 addition & 0 deletions serde_v8/tests/ser.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8;

use serde::Serialize;
Expand Down

0 comments on commit fa67aeb

Please sign in to comment.