From 9480295bf24d673a89b8e097c42e08423a4549e6 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Sat, 21 Jul 2018 12:15:42 +0200 Subject: [PATCH] Add licenses to all Cargo.toml files (#349) --- circular-buffer/Cargo.toml | 1 + core/Cargo.toml | 1 + datastore/Cargo.toml | 1 + dns/Cargo.toml | 1 + floodsub/Cargo.toml | 1 + identify/Cargo.toml | 1 + kad/Cargo.toml | 1 + libp2p/Cargo.toml | 1 + mplex/Cargo.toml | 1 + multistream-select/Cargo.toml | 1 + peerstore/Cargo.toml | 1 + ping/Cargo.toml | 1 + ratelimit/Cargo.toml | 1 + relay/Cargo.toml | 1 + rw-stream-sink/Cargo.toml | 1 + secio/Cargo.toml | 1 + tcp-transport/Cargo.toml | 1 + transport-timeout/Cargo.toml | 1 + varint-rs/Cargo.toml | 1 + websocket/Cargo.toml | 1 + yamux/Cargo.toml | 1 + 21 files changed, 21 insertions(+) diff --git a/circular-buffer/Cargo.toml b/circular-buffer/Cargo.toml index 2f95cf7e..f6c691aa 100644 --- a/circular-buffer/Cargo.toml +++ b/circular-buffer/Cargo.toml @@ -2,6 +2,7 @@ name = "circular-buffer" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] smallvec = { git = "https://github.com/Vurich/rust-smallvec.git", branch = "array-zero" } \ No newline at end of file diff --git a/core/Cargo.toml b/core/Cargo.toml index 60117bd1..9510427f 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,6 +2,7 @@ name = "libp2p-core" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] bs58 = "0.2.0" diff --git a/datastore/Cargo.toml b/datastore/Cargo.toml index 7cc881f7..7a60a5cb 100644 --- a/datastore/Cargo.toml +++ b/datastore/Cargo.toml @@ -2,6 +2,7 @@ name = "datastore" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] base64 = "0.7" diff --git a/dns/Cargo.toml b/dns/Cargo.toml index c50f322d..31a01ef1 100644 --- a/dns/Cargo.toml +++ b/dns/Cargo.toml @@ -2,6 +2,7 @@ name = "libp2p-dns" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] libp2p-core = { path = "../core" } diff --git a/floodsub/Cargo.toml b/floodsub/Cargo.toml index 951dd98f..c2fc7e55 100644 --- a/floodsub/Cargo.toml +++ b/floodsub/Cargo.toml @@ -2,6 +2,7 @@ name = "libp2p-floodsub" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] bs58 = "0.2.0" diff --git a/identify/Cargo.toml b/identify/Cargo.toml index cdc5ee88..93ad7eaf 100644 --- a/identify/Cargo.toml +++ b/identify/Cargo.toml @@ -2,6 +2,7 @@ name = "libp2p-identify" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] bytes = "0.4" diff --git a/kad/Cargo.toml b/kad/Cargo.toml index c7ef2223..9bb9fb7d 100644 --- a/kad/Cargo.toml +++ b/kad/Cargo.toml @@ -2,6 +2,7 @@ name = "libp2p-kad" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] arrayvec = "0.4.7" diff --git a/libp2p/Cargo.toml b/libp2p/Cargo.toml index 9f625cd5..7c7fae85 100644 --- a/libp2p/Cargo.toml +++ b/libp2p/Cargo.toml @@ -2,6 +2,7 @@ name = "libp2p" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [features] default = ["libp2p-secio", "libp2p-secio-secp256k1"] diff --git a/mplex/Cargo.toml b/mplex/Cargo.toml index 5728f2cd..97911a01 100644 --- a/mplex/Cargo.toml +++ b/mplex/Cargo.toml @@ -2,6 +2,7 @@ name = "libp2p-mplex" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] bytes = "0.4.5" diff --git a/multistream-select/Cargo.toml b/multistream-select/Cargo.toml index c8ad3aed..abeb357f 100644 --- a/multistream-select/Cargo.toml +++ b/multistream-select/Cargo.toml @@ -2,6 +2,7 @@ name = "multistream-select" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] bytes = "0.4" diff --git a/peerstore/Cargo.toml b/peerstore/Cargo.toml index 0306e2bd..9a287edb 100644 --- a/peerstore/Cargo.toml +++ b/peerstore/Cargo.toml @@ -2,6 +2,7 @@ name = "libp2p-peerstore" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] bs58 = "0.2.0" diff --git a/ping/Cargo.toml b/ping/Cargo.toml index 0417100d..1b4fd9aa 100644 --- a/ping/Cargo.toml +++ b/ping/Cargo.toml @@ -2,6 +2,7 @@ name = "libp2p-ping" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] bytes = "0.4" diff --git a/ratelimit/Cargo.toml b/ratelimit/Cargo.toml index 242c53fe..fbfcbc86 100644 --- a/ratelimit/Cargo.toml +++ b/ratelimit/Cargo.toml @@ -2,6 +2,7 @@ name = "libp2p-ratelimit" version = "0.1.1" authors = ["Parity Technologies "] +license = "MIT" [dependencies] aio-limited = { git = "https://github.com/paritytech/aio-limited.git" } diff --git a/relay/Cargo.toml b/relay/Cargo.toml index e83e55fb..a477f41b 100644 --- a/relay/Cargo.toml +++ b/relay/Cargo.toml @@ -2,6 +2,7 @@ name = "libp2p-relay" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] bytes = "0.4" diff --git a/rw-stream-sink/Cargo.toml b/rw-stream-sink/Cargo.toml index 2e811e04..dd00aff1 100644 --- a/rw-stream-sink/Cargo.toml +++ b/rw-stream-sink/Cargo.toml @@ -2,6 +2,7 @@ name = "rw-stream-sink" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] bytes = "0.4" diff --git a/secio/Cargo.toml b/secio/Cargo.toml index 586936fc..4fff69af 100644 --- a/secio/Cargo.toml +++ b/secio/Cargo.toml @@ -2,6 +2,7 @@ name = "libp2p-secio" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] asn1_der = "0.5" diff --git a/tcp-transport/Cargo.toml b/tcp-transport/Cargo.toml index be40e303..1e77a06f 100644 --- a/tcp-transport/Cargo.toml +++ b/tcp-transport/Cargo.toml @@ -2,6 +2,7 @@ name = "libp2p-tcp-transport" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] libp2p-core = { path = "../core" } diff --git a/transport-timeout/Cargo.toml b/transport-timeout/Cargo.toml index bfd9d82c..4ab82e45 100644 --- a/transport-timeout/Cargo.toml +++ b/transport-timeout/Cargo.toml @@ -2,6 +2,7 @@ name = "libp2p-transport-timeout" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] futures = "0.1" diff --git a/varint-rs/Cargo.toml b/varint-rs/Cargo.toml index d0d7a80f..9dcf97fa 100644 --- a/varint-rs/Cargo.toml +++ b/varint-rs/Cargo.toml @@ -2,6 +2,7 @@ name = "varint" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] num-bigint = { version = "0.1.41", default-features = false } diff --git a/websocket/Cargo.toml b/websocket/Cargo.toml index 11727aae..a05c99d3 100644 --- a/websocket/Cargo.toml +++ b/websocket/Cargo.toml @@ -2,6 +2,7 @@ name = "libp2p-websocket" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] libp2p-core = { path = "../core" } diff --git a/yamux/Cargo.toml b/yamux/Cargo.toml index b100c4fc..54b7a72e 100644 --- a/yamux/Cargo.toml +++ b/yamux/Cargo.toml @@ -2,6 +2,7 @@ name = "libp2p-yamux" version = "0.1.0" authors = ["Parity Technologies "] +license = "MIT" [dependencies] bytes = "0.4"