mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
v2.0 release
This commit is contained in:
parent
1e4977152a
commit
c3884e212c
8 changed files with 21 additions and 21 deletions
|
@ -10,12 +10,12 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies.rtic]
|
[dependencies.rtic]
|
||||||
path = "../../rtic"
|
path = "../../rtic"
|
||||||
version = "=2.0.0-alpha.2"
|
version = "2.0.0"
|
||||||
features = ["thumbv6-backend"]
|
features = ["thumbv6-backend"]
|
||||||
|
|
||||||
[dependencies.rtic-monotonics]
|
[dependencies.rtic-monotonics]
|
||||||
path = "../../rtic-monotonics"
|
path = "../../rtic-monotonics"
|
||||||
version = "=1.0.0-alpha.2"
|
version = "1.0.0"
|
||||||
features = ["rp2040"]
|
features = ["rp2040"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
|
@ -9,18 +9,18 @@ version = "0.1.0"
|
||||||
|
|
||||||
[dependencies.rtic]
|
[dependencies.rtic]
|
||||||
path = "../../rtic"
|
path = "../../rtic"
|
||||||
version = "=2.0.0-alpha.2"
|
version = "2.0.0"
|
||||||
features = ["thumbv7-backend"]
|
features = ["thumbv7-backend"]
|
||||||
|
|
||||||
[dependencies.rtic-monotonics]
|
[dependencies.rtic-monotonics]
|
||||||
path = "../../rtic-monotonics"
|
path = "../../rtic-monotonics"
|
||||||
version = "=1.0.0-alpha.2"
|
version = "1.0.0"
|
||||||
features = ["cortex-m-systick"]
|
features = ["cortex-m-systick"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
embedded-hal = "0.2.7"
|
embedded-hal = "0.2.7"
|
||||||
panic-rtt-target = { version = "0.1.2", features = ["cortex-m"] }
|
panic-rtt-target = { version = "0.1.2", features = ["cortex-m"] }
|
||||||
rtt-target = { version = "0.3.1", features = ["cortex-m"] }
|
rtt-target = { version = "0.4.0" }
|
||||||
|
|
||||||
[dependencies.stm32f3xx-hal]
|
[dependencies.stm32f3xx-hal]
|
||||||
features = ["stm32f303xc", "rt"]
|
features = ["stm32f303xc", "rt"]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rtic-common"
|
name = "rtic-common"
|
||||||
version = "1.0.0-alpha.0"
|
version = "1.0.0"
|
||||||
|
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = [
|
authors = [
|
||||||
|
|
|
@ -22,7 +22,7 @@ name = "rtic-macros"
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
repository = "https://github.com/rtic-rs/rtic"
|
repository = "https://github.com/rtic-rs/rtic"
|
||||||
|
|
||||||
version = "2.0.0-alpha.2"
|
version = "2.0.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rtic-monotonics"
|
name = "rtic-monotonics"
|
||||||
version = "1.0.0-alpha.2"
|
version = "1.0.0"
|
||||||
|
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = [
|
authors = [
|
||||||
"The Real-Time Interrupt-driven Concurrency developers",
|
"The Real-Time Interrupt-driven Concurrency developers",
|
||||||
"Emil Fresk <emil.fresk@gmail.com>",
|
"Emil Fresk <emil.fresk@gmail.com>",
|
||||||
"Henrik Tjäder <henrik@tjaders.com>",
|
"Henrik Tjäder <henrik@tjaders.com>",
|
||||||
"Jorge Aparicio <jorge@japaric.io>",
|
"Jorge Aparicio <jorge@japaric.io>",
|
||||||
"Per Lindgren <per.lindgren@ltu.se>",
|
"Per Lindgren <per.lindgren@ltu.se>",
|
||||||
]
|
]
|
||||||
categories = ["concurrency", "embedded", "no-std", "asynchronous"]
|
categories = ["concurrency", "embedded", "no-std", "asynchronous"]
|
||||||
description = "A library that provides implementations of the Monotonic trait from rtic-time"
|
description = "A library that provides implementations of the Monotonic trait from rtic-time"
|
||||||
|
@ -19,7 +19,7 @@ features = ["cortex-m-systick", "rp2040", "nrf52840"]
|
||||||
rustdoc-flags = ["--cfg", "docsrs"]
|
rustdoc-flags = ["--cfg", "docsrs"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rtic-time = { version = "1.0.0-alpha.1", path = "../rtic-time" }
|
rtic-time = { version = "1.0.0", path = "../rtic-time" }
|
||||||
embedded-hal-async = { version = "0.2.0-alpha.1", optional = true }
|
embedded-hal-async = { version = "0.2.0-alpha.1", optional = true }
|
||||||
fugit = { version = "0.3.6" }
|
fugit = { version = "0.3.6" }
|
||||||
atomic-polyfill = "1"
|
atomic-polyfill = "1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rtic-sync"
|
name = "rtic-sync"
|
||||||
version = "1.0.0-alpha.0"
|
version = "1.0.0"
|
||||||
|
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = [
|
authors = [
|
||||||
|
@ -19,7 +19,7 @@ license = "MIT OR Apache-2.0"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
heapless = "0.7"
|
heapless = "0.7"
|
||||||
critical-section = "1"
|
critical-section = "1"
|
||||||
rtic-common = { version = "1.0.0-alpha.0", path = "../rtic-common" }
|
rtic-common = { version = "1.0.0", path = "../rtic-common" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "1", features = ["rt", "macros", "time"] }
|
tokio = { version = "1", features = ["rt", "macros", "time"] }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rtic-time"
|
name = "rtic-time"
|
||||||
version = "1.0.0-alpha.1"
|
version = "1.0.0"
|
||||||
|
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = [
|
authors = [
|
||||||
|
@ -19,7 +19,7 @@ license = "MIT OR Apache-2.0"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
critical-section = "1"
|
critical-section = "1"
|
||||||
futures-util = { version = "0.3.25", default-features = false }
|
futures-util = { version = "0.3.25", default-features = false }
|
||||||
rtic-common = { version = "1.0.0-alpha.0", path = "../rtic-common" }
|
rtic-common = { version = "1.0.0", path = "../rtic-common" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
parking_lot = "0.12"
|
parking_lot = "0.12"
|
||||||
|
|
|
@ -22,7 +22,7 @@ name = "rtic"
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
repository = "https://github.com/rtic-rs/rtic"
|
repository = "https://github.com/rtic-rs/rtic"
|
||||||
|
|
||||||
version = "2.0.0-alpha.2"
|
version = "2.0.0"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
features = ["rtic-macros/test-template"]
|
features = ["rtic-macros/test-template"]
|
||||||
|
@ -35,8 +35,8 @@ cortex-m = { version = "0.7.0", optional = true }
|
||||||
bare-metal = "1.0.0"
|
bare-metal = "1.0.0"
|
||||||
#portable-atomic = { version = "0.3.19" }
|
#portable-atomic = { version = "0.3.19" }
|
||||||
atomic-polyfill = "1"
|
atomic-polyfill = "1"
|
||||||
rtic-monotonics = { path = "../rtic-monotonics", version = "1.0.0-alpha.1", optional = true }
|
rtic-monotonics = { path = "../rtic-monotonics", version = "1.0.0", optional = true }
|
||||||
rtic-macros = { path = "../rtic-macros", version = "2.0.0-alpha.2" }
|
rtic-macros = { path = "../rtic-macros", version = "2.0.0" }
|
||||||
rtic-core = "1"
|
rtic-core = "1"
|
||||||
critical-section = "1"
|
critical-section = "1"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue