lib: relicense 11 libraries from GPL2 to MIT (Cargo.toml)

Summary:
Update Cargo.toml metadata for libraries being relicensed (atomicfile, dag
(excluding bindag, benches, fuzz), dag/dag-types, dev-logger, drawdag,
indexedlog, mincode, minibench, minibytes, nonblocking, vlqencoding).

dag/{bindag,benches,fuzz} are marked GPL2 to distinguish from dag.

Differential Revision: D38053008

fbshipit-source-id: 22c641c75030fede0384eecb726ff7e029c6b5ff
This commit is contained in:
Jun Wu 2022-07-22 13:01:44 -07:00 committed by Facebook GitHub Bot
parent c093f592e2
commit 7d59cf8d69
13 changed files with 13 additions and 1 deletions

View File

@ -4,6 +4,7 @@
name = "atomicfile"
version = "0.1.0"
edition = "2021"
license = "MIT"
[dependencies]
tempfile = "3.3"

View File

@ -4,6 +4,7 @@
name = "dag"
version = "0.1.0"
edition = "2021"
license = "MIT"
[dependencies]
anyhow = "1.0.56"

View File

@ -4,6 +4,7 @@
name = "dag-benches"
version = "0.1.0"
edition = "2021"
license = "GPL-2.0-only"
[dependencies]
bindag = { version = "0.1.0", path = "../bindag" }

View File

@ -4,6 +4,7 @@
name = "bindag"
version = "0.1.0"
edition = "2021"
license = "GPL-2.0-only"
[dependencies]
dag = { version = "0.1.0", path = ".." }

View File

@ -4,6 +4,7 @@
name = "dag-types"
version = "0.1.0"
edition = "2021"
license = "MIT"
[dependencies]
abomonation = "0.7"

View File

@ -4,6 +4,7 @@
name = "dev-logger"
version = "0.1.0"
edition = "2021"
license = "MIT"
[dependencies]
ctor = "0.1"

View File

@ -4,3 +4,4 @@
name = "drawdag"
version = "0.1.0"
edition = "2021"
license = "MIT"

View File

@ -4,6 +4,7 @@
name = "indexedlog"
version = "0.1.0"
edition = "2021"
license = "MIT"
[[bench]]
name = "index"

View File

@ -6,7 +6,7 @@ version = "0.1.0"
authors = ["David Tolnay <dtolnay@gmail.com>", "Facebook Source Control Team <sourcecontrol-dev@fb.com>"]
edition = "2021"
description = "Minimal serialization format"
license = "GPL-2.0-only"
license = "MIT"
include = ["Cargo.toml", "src/**/*.rs"]
[dependencies]

View File

@ -4,3 +4,4 @@
name = "minibench"
version = "0.1.0"
edition = "2021"
license = "MIT"

View File

@ -4,6 +4,7 @@
name = "minibytes"
version = "0.1.0"
edition = "2021"
license = "MIT"
[dependencies]
bytes = { version = "1.1", features = ["serde"], optional = true }

View File

@ -4,6 +4,7 @@
name = "nonblocking"
version = "0.1.0"
edition = "2021"
license = "MIT"
[dev-dependencies]
futures = { version = "0.3.13", features = ["async-await", "compat"] }

View File

@ -5,6 +5,7 @@ name = "vlqencoding"
version = "0.1.0"
authors = ["Facebook Source Control Team <sourcecontrol-dev@fb.com>"]
edition = "2021"
license = "MIT"
[[bench]]
name = "bench"