From 71b5f9438e1beb5fe12b90415d9d6307e79c0cdf Mon Sep 17 00:00:00 2001 From: Emil Fresk Date: Mon, 23 Jan 2023 20:57:56 +0100 Subject: Fixed systick monotonic --- rtic-time/Cargo.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 rtic-time/Cargo.toml (limited to 'rtic-time/Cargo.toml') diff --git a/rtic-time/Cargo.toml b/rtic-time/Cargo.toml new file mode 100644 index 0000000..ea05939 --- /dev/null +++ b/rtic-time/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "rtic-time" +version = "1.0.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +critical-section = "1" +futures-util = { version = "0.3.25", default-features = false } -- cgit v1.2.3 From d0c51269608c18a105fd010f070bd9af6f443c60 Mon Sep 17 00:00:00 2001 From: Emil Fresk Date: Tue, 31 Jan 2023 22:05:43 +0100 Subject: Cleanup common code and clippy fixes --- rtic-time/Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'rtic-time/Cargo.toml') diff --git a/rtic-time/Cargo.toml b/rtic-time/Cargo.toml index ea05939..dbcf454 100644 --- a/rtic-time/Cargo.toml +++ b/rtic-time/Cargo.toml @@ -8,3 +8,4 @@ edition = "2021" [dependencies] critical-section = "1" futures-util = { version = "0.3.25", default-features = false } +rtic-common = { version = "1.0.0", path = "../rtic-common" } -- cgit v1.2.3 From fe77b4538d6cd506d1a18bdc9e17216dc61881db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Wed, 1 Feb 2023 21:55:05 +0100 Subject: Add alpha.0 and required Cargo fields --- rtic-time/Cargo.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'rtic-time/Cargo.toml') diff --git a/rtic-time/Cargo.toml b/rtic-time/Cargo.toml index dbcf454..0ba7b11 100644 --- a/rtic-time/Cargo.toml +++ b/rtic-time/Cargo.toml @@ -1,11 +1,14 @@ [package] name = "rtic-time" -version = "1.0.0" +version = "1.0.0-alpha.0" edition = "2021" +categories = ["concurrency", "embedded", "no-std", "asynchronous"] +description = "rtic-time lib TODO" +license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] critical-section = "1" futures-util = { version = "0.3.25", default-features = false } -rtic-common = { version = "1.0.0", path = "../rtic-common" } +rtic-common = { version = "1.0.0-alpha.0", path = "../rtic-common" } -- cgit v1.2.3 From c2d2b1ba38dd291cfcd7e32f11d725db0ec1cf85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Wed, 1 Feb 2023 22:11:50 +0100 Subject: Add authors to each Cargo.toml Copy-paste the default one used for the project --- rtic-time/Cargo.toml | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'rtic-time/Cargo.toml') 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 ", + "Henrik Tjäder ", + "Jorge Aparicio ", + "Per Lindgren ", +] categories = ["concurrency", "embedded", "no-std", "asynchronous"] description = "rtic-time lib TODO" license = "MIT OR Apache-2.0" -- cgit v1.2.3