From 71928b55e47cc52cb9a816f516b68afa65d15014 Mon Sep 17 00:00:00 2001 From: Piotr Gankiewicz Date: Sun, 12 Jan 2025 15:03:20 +0100 Subject: [PATCH] Update license to Apache 2.0 in Cargo.toml files (#1432) --- bench/Cargo.toml | 1 + cli/Cargo.toml | 2 +- examples/Cargo.toml | 1 + integration/Cargo.toml | 1 + sdk/Cargo.toml | 2 +- server/Cargo.toml | 1 + tools/Cargo.toml | 1 + 7 files changed, 7 insertions(+), 2 deletions(-) diff --git a/bench/Cargo.toml b/bench/Cargo.toml index a3ae9cf55..3d5cee5f3 100644 --- a/bench/Cargo.toml +++ b/bench/Cargo.toml @@ -2,6 +2,7 @@ name = "bench" version = "0.1.2" edition = "2021" +license = "Apache-2.0" [dependencies] async-trait = "0.1.84" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index c19eba4cc..86e0c9906 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -6,7 +6,7 @@ authors = ["bartosz.ciesla@gmail.com"] repository = "https://github.com/iggy-rs/iggy" homepage = "https://iggy.rs" description = "CLI for Iggy message streaming platform" -license = "MIT" +license = "Apache-2.0" keywords = ["iggy", "cli", "messaging", "streaming"] readme = "../README.md" diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 6cfc12ee5..7afa74f1d 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -2,6 +2,7 @@ name = "iggy_examples" version = "0.0.5" edition = "2021" +license = "Apache-2.0" [[example]] name = "getting-started-consumer" diff --git a/integration/Cargo.toml b/integration/Cargo.toml index 30faedd50..93f2ebdd2 100644 --- a/integration/Cargo.toml +++ b/integration/Cargo.toml @@ -2,6 +2,7 @@ name = "integration" version = "0.0.1" edition = "2021" +license = "Apache-2.0" [dependencies] ahash = { version = "0.8.11", features = ["serde"] } diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 4de321547..a01484f16 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -3,7 +3,7 @@ name = "iggy" version = "0.6.63" description = "Iggy is the persistent message streaming platform written in Rust, supporting QUIC, TCP and HTTP transport protocols, capable of processing millions of messages per second." edition = "2021" -license = "MIT" +license = "Apache-2.0" keywords = ["iggy", "messaging", "streaming"] categories = ["command-line-utilities", "database", "network-programming"] homepage = "https://iggy.rs" diff --git a/server/Cargo.toml b/server/Cargo.toml index dd74712d1..dbb850252 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -3,6 +3,7 @@ name = "server" version = "0.4.101" edition = "2021" build = "src/build.rs" +license = "Apache-2.0" [features] default = [] diff --git a/tools/Cargo.toml b/tools/Cargo.toml index 8560a3611..afa113e87 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -2,6 +2,7 @@ name = "tools" version = "0.1.0" edition = "2021" +license = "Apache-2.0" [[bin]] name = "data-seeder-tool"