aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Tjäder <henrik@tjaders.com>2023-02-01 22:11:50 +0100
committerHenrik Tjäder <henrik@tjaders.com>2023-03-01 00:35:10 +0100
commitc2d2b1ba38dd291cfcd7e32f11d725db0ec1cf85 (patch)
tree498c7670be88269076f8a842825d1e61d87ec075
parentfe77b4538d6cd506d1a18bdc9e17216dc61881db (diff)
Add authors to each Cargo.toml
Copy-paste the default one used for the project
-rw-r--r--rtic-arbiter/Cargo.toml8
-rw-r--r--rtic-channel/Cargo.toml8
-rw-r--r--rtic-common/Cargo.toml8
-rw-r--r--rtic-monotonics/Cargo.toml8
-rw-r--r--rtic-time/Cargo.toml8
5 files changed, 40 insertions, 0 deletions
diff --git a/rtic-arbiter/Cargo.toml b/rtic-arbiter/Cargo.toml
index 52daa27..d8b18c4 100644
--- a/rtic-arbiter/Cargo.toml
+++ b/rtic-arbiter/Cargo.toml
@@ -1,7 +1,15 @@
[package]
name = "rtic-arbiter"
version = "1.0.0-alpha.0"
+
edition = "2021"
+authors = [
+ "The Real-Time Interrupt-driven Concurrency developers",
+ "Emil Fresk <emil.fresk@gmail.com>",
+ "Henrik Tjäder <henrik@tjaders.com>",
+ "Jorge Aparicio <jorge@japaric.io>",
+ "Per Lindgren <per.lindgren@ltu.se>",
+]
categories = ["concurrency", "embedded", "no-std", "asynchronous"]
description = "rtic-arbiter lib TODO"
license = "MIT OR Apache-2.0"
diff --git a/rtic-channel/Cargo.toml b/rtic-channel/Cargo.toml
index a6f98e4..900f972 100644
--- a/rtic-channel/Cargo.toml
+++ b/rtic-channel/Cargo.toml
@@ -1,7 +1,15 @@
[package]
name = "rtic-channel"
version = "1.0.0-alpha.0"
+
edition = "2021"
+authors = [
+ "The Real-Time Interrupt-driven Concurrency developers",
+ "Emil Fresk <emil.fresk@gmail.com>",
+ "Henrik Tjäder <henrik@tjaders.com>",
+ "Jorge Aparicio <jorge@japaric.io>",
+ "Per Lindgren <per.lindgren@ltu.se>",
+]
categories = ["concurrency", "embedded", "no-std", "asynchronous"]
description = "rtic-channel lib TODO"
license = "MIT OR Apache-2.0"
diff --git a/rtic-common/Cargo.toml b/rtic-common/Cargo.toml
index 35b0f72..726090a 100644
--- a/rtic-common/Cargo.toml
+++ b/rtic-common/Cargo.toml
@@ -1,7 +1,15 @@
[package]
name = "rtic-common"
version = "1.0.0-alpha.0"
+
edition = "2021"
+authors = [
+ "The Real-Time Interrupt-driven Concurrency developers",
+ "Emil Fresk <emil.fresk@gmail.com>",
+ "Henrik Tjäder <henrik@tjaders.com>",
+ "Jorge Aparicio <jorge@japaric.io>",
+ "Per Lindgren <per.lindgren@ltu.se>",
+]
categories = ["concurrency", "embedded", "no-std", "asynchronous"]
description = "rtic-common lib TODO"
license = "MIT OR Apache-2.0"
diff --git a/rtic-monotonics/Cargo.toml b/rtic-monotonics/Cargo.toml
index bb8ff6d..5e6586e 100644
--- a/rtic-monotonics/Cargo.toml
+++ b/rtic-monotonics/Cargo.toml
@@ -1,7 +1,15 @@
[package]
name = "rtic-monotonics"
version = "1.0.0-alpha.0"
+
edition = "2021"
+authors = [
+ "The Real-Time Interrupt-driven Concurrency developers",
+ "Emil Fresk <emil.fresk@gmail.com>",
+ "Henrik Tjäder <henrik@tjaders.com>",
+ "Jorge Aparicio <jorge@japaric.io>",
+ "Per Lindgren <per.lindgren@ltu.se>",
+]
categories = ["concurrency", "embedded", "no-std", "asynchronous"]
description = "rtic-monotonics lib TODO"
license = "MIT OR Apache-2.0"
diff --git a/rtic-time/Cargo.toml b/rtic-time/Cargo.toml
index 0ba7b11..c7d13bb 100644
--- a/rtic-time/Cargo.toml
+++ b/rtic-time/Cargo.toml
@@ -1,7 +1,15 @@
[package]
name = "rtic-time"
version = "1.0.0-alpha.0"
+
edition = "2021"
+authors = [
+ "The Real-Time Interrupt-driven Concurrency developers",
+ "Emil Fresk <emil.fresk@gmail.com>",
+ "Henrik Tjäder <henrik@tjaders.com>",
+ "Jorge Aparicio <jorge@japaric.io>",
+ "Per Lindgren <per.lindgren@ltu.se>",
+]
categories = ["concurrency", "embedded", "no-std", "asynchronous"]
description = "rtic-time lib TODO"
license = "MIT OR Apache-2.0"