Skip to content

Commit

Permalink
Reformat Cargo.toml files
Browse files Browse the repository at this point in the history
Using default settings of the "Even Better TOML" VSCode plugin, because
that's what's available. board/Cargo.toml had no changes. I excluded the
.cargo/config.toml changes; I prefer the file as-is versus putting every
string on its own line.
  • Loading branch information
mciantyre committed Jan 16, 2024
1 parent d639253 commit a659703
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 15 deletions.
24 changes: 14 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
[package]
name = "imxrt-hal"
authors = ["Tom Burdick <tom.burdick@electromatic.us>", "Ian McIntyre <ianpmcintyre@gmail.com>"]
authors = [
"Tom Burdick <tom.burdick@electromatic.us>",
"Ian McIntyre <ianpmcintyre@gmail.com>",
]
description = """
Hardware abstraction layer for NXP i.MX RT microcontrollers.
"""
readme = "README.md"
repository = { workspace = true }
keywords = { workspace = true }
categories = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
keywords = { workspace = true }
categories = { workspace = true }
license = { workspace = true }
edition = { workspace = true }
version = "0.5.4"

Expand Down Expand Up @@ -80,16 +83,17 @@ imxrt1170 = ["imxrt-iomuxc/imxrt1170"]
eh02-unproven = []

[workspace]
members = [
"board",
"logging",
]
members = ["board", "logging"]

[workspace.dependencies]
imxrt-dma = "0.1"
imxrt-iomuxc = "0.2.1"
imxrt-hal = { version = "0.5", path = "." }
imxrt-log = { path = "logging", default-features = false, features = ["log", "lpuart", "usbd"] }
imxrt-log = { path = "logging", default-features = false, features = [
"log",
"lpuart",
"usbd",
] }
imxrt-ral = "0.5"
imxrt-rt = "0.1"
imxrt-usbd = "0.2"
Expand Down
10 changes: 5 additions & 5 deletions logging/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "imxrt-log"
version = "0.1.1"
edition = { workspace = true }
edition = { workspace = true }
description = "Logging extensions for i.MX RT processors."
repository = { workspace = true }
keywords = { workspace = true }
categories = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
keywords = { workspace = true }
categories = { workspace = true }
license = { workspace = true }
readme = "README.md"

[dependencies]
Expand Down

0 comments on commit a659703

Please sign in to comment.