Format all Cargo.tomls in a more standard way

I'm using a VS Code extension that auto-formats TOML files now. I
*could* configure it to not do that, but I figure giving up on my
non-standard formatting ways is going to be less trouble in the long
run.
This commit is contained in:
Hanno Braun 2022-04-11 17:15:31 +02:00
parent a30266de3d
commit a71f77aadb
11 changed files with 92 additions and 92 deletions

View File

@ -1,65 +1,65 @@
[package] [package]
name = "fj-app" name = "fj-app"
version = "0.5.0" version = "0.5.0"
edition = "2021" edition = "2021"
description = "The world needs another CAD program." description = "The world needs another CAD program."
readme = "../README.md" readme = "../README.md"
repository = "https://github.com/hannobraun/fornjot" repository = "https://github.com/hannobraun/fornjot"
license = "0BSD" license = "0BSD"
keywords = ["cad", "programmatic", "code-cad"] keywords = ["cad", "programmatic", "code-cad"]
categories = ["mathematics", "rendering"] categories = ["mathematics", "rendering"]
[dependencies] [dependencies]
anyhow = "1.0.56" anyhow = "1.0.56"
bytemuck = "1.9.1" bytemuck = "1.9.1"
futures = "0.3.21" futures = "0.3.21"
nalgebra = "0.30.0" nalgebra = "0.30.0"
parry3d-f64 = "0.8.0" parry3d-f64 = "0.8.0"
thiserror = "1.0.30" thiserror = "1.0.30"
threemf = "0.2.0" threemf = "0.2.0"
tracing = "0.1.33" tracing = "0.1.33"
wgpu = "0.12.0" wgpu = "0.12.0"
wgpu_glyph = "0.16.0" wgpu_glyph = "0.16.0"
winit = "0.26.1" winit = "0.26.1"
[dependencies.clap] [dependencies.clap]
version = "3.1.8" version = "3.1.8"
features = ["derive"] features = ["derive"]
[dependencies.figment] [dependencies.figment]
version = "0.10.6" version = "0.10.6"
features = ["env", "toml"] features = ["env", "toml"]
[dependencies.fj] [dependencies.fj]
version = "0.5.0" version = "0.5.0"
path = "../fj" path = "../fj"
[dependencies.fj-debug] [dependencies.fj-debug]
version = "0.5.0" version = "0.5.0"
path = "../fj-debug" path = "../fj-debug"
[dependencies.fj-host] [dependencies.fj-host]
version = "0.5.0" version = "0.5.0"
path = "../fj-host" path = "../fj-host"
[dependencies.fj-kernel] [dependencies.fj-kernel]
version = "0.5.0" version = "0.5.0"
path = "../fj-kernel" path = "../fj-kernel"
[dependencies.fj-math] [dependencies.fj-math]
version = "0.5.0" version = "0.5.0"
path = "../fj-math" path = "../fj-math"
[dependencies.fj-operations] [dependencies.fj-operations]
version = "0.5.0" version = "0.5.0"
path = "../fj-operations" path = "../fj-operations"
[dependencies.serde] [dependencies.serde]
version = "1.0.136" version = "1.0.136"
features = ["derive"] features = ["derive"]
[dependencies.tracing-subscriber] [dependencies.tracing-subscriber]
version = "0.3.11" version = "0.3.11"
features = ["env-filter", "fmt"] features = ["env-filter", "fmt"]

View File

@ -1,15 +1,15 @@
[package] [package]
name = "fj-debug" name = "fj-debug"
version = "0.5.0" version = "0.5.0"
edition = "2021" edition = "2021"
description = "The world needs another CAD program." description = "The world needs another CAD program."
readme = "../README.md" readme = "../README.md"
repository = "https://github.com/hannobraun/fornjot" repository = "https://github.com/hannobraun/fornjot"
license = "0BSD" license = "0BSD"
keywords = ["cad", "programmatic", "code-cad"] keywords = ["cad", "programmatic", "code-cad"]
[dependencies.fj-math] [dependencies.fj-math]
path = "../fj-math" path = "../fj-math"
version = "0.5.0" version = "0.5.0"

View File

@ -1,20 +1,20 @@
[package] [package]
name = "fj-host" name = "fj-host"
version = "0.5.0" version = "0.5.0"
edition = "2021" edition = "2021"
description = "The world needs another CAD program." description = "The world needs another CAD program."
readme = "../README.md" readme = "../README.md"
repository = "https://github.com/hannobraun/fornjot" repository = "https://github.com/hannobraun/fornjot"
license = "0BSD" license = "0BSD"
keywords = ["cad", "programmatic", "code-cad"] keywords = ["cad", "programmatic", "code-cad"]
[dependencies] [dependencies]
libloading = "0.7.2" libloading = "0.7.2"
notify = "5.0.0-pre.14" notify = "5.0.0-pre.14"
thiserror = "1.0.30" thiserror = "1.0.30"
[dependencies.fj] [dependencies.fj]
version = "0.5.0" version = "0.5.0"
path = "../fj" path = "../fj"

View File

@ -1,34 +1,34 @@
[package] [package]
name = "fj-kernel" name = "fj-kernel"
version = "0.5.0" version = "0.5.0"
edition = "2021" edition = "2021"
description = "The world needs another CAD program." description = "The world needs another CAD program."
readme = "../README.md" readme = "../README.md"
repository = "https://github.com/hannobraun/fornjot" repository = "https://github.com/hannobraun/fornjot"
license = "0BSD" license = "0BSD"
keywords = ["cad", "programmatic", "code-cad"] keywords = ["cad", "programmatic", "code-cad"]
categories = ["mathematics"] categories = ["mathematics"]
[dependencies] [dependencies]
anyhow = "1.0.56" anyhow = "1.0.56"
anymap = "1.0.0-beta.2" anymap = "1.0.0-beta.2"
approx = "0.5.1" approx = "0.5.1"
map-macro = "0.2.0" map-macro = "0.2.0"
nalgebra = "0.30.0" nalgebra = "0.30.0"
parking_lot = "0.12.0" parking_lot = "0.12.0"
parry2d-f64 = "0.8.0" parry2d-f64 = "0.8.0"
parry3d-f64 = "0.8.0" parry3d-f64 = "0.8.0"
robust = "0.2.3" robust = "0.2.3"
slotmap = "1.0.6" slotmap = "1.0.6"
spade = "2.0.0" spade = "2.0.0"
thiserror = "1.0.30" thiserror = "1.0.30"
[dependencies.fj-debug] [dependencies.fj-debug]
version = "0.5.0" version = "0.5.0"
path = "../fj-debug" path = "../fj-debug"
[dependencies.fj-math] [dependencies.fj-math]
version = "0.5.0" version = "0.5.0"
path = "../fj-math" path = "../fj-math"

View File

@ -1,19 +1,19 @@
[package] [package]
name = "fj-math" name = "fj-math"
version = "0.5.0" version = "0.5.0"
edition = "2021" edition = "2021"
description = "The world needs another CAD program." description = "The world needs another CAD program."
readme = "../README.md" readme = "../README.md"
repository = "https://github.com/hannobraun/fornjot" repository = "https://github.com/hannobraun/fornjot"
license = "0BSD" license = "0BSD"
keywords = ["cad", "programmatic", "code-cad"] keywords = ["cad", "programmatic", "code-cad"]
categories = ["mathematics"] categories = ["mathematics"]
[dependencies] [dependencies]
approx = "0.5.1" approx = "0.5.1"
decorum = "0.3.1" decorum = "0.3.1"
nalgebra = "0.30.0" nalgebra = "0.30.0"
num-traits = "0.2.14" num-traits = "0.2.14"
parry2d-f64 = "0.8.0" parry2d-f64 = "0.8.0"
parry3d-f64 = "0.8.0" parry3d-f64 = "0.8.0"

View File

@ -1,32 +1,32 @@
[package] [package]
name = "fj-operations" name = "fj-operations"
version = "0.5.0" version = "0.5.0"
edition = "2021" edition = "2021"
description = "The world needs another CAD program." description = "The world needs another CAD program."
readme = "../README.md" readme = "../README.md"
repository = "https://github.com/hannobraun/fornjot" repository = "https://github.com/hannobraun/fornjot"
license = "0BSD" license = "0BSD"
keywords = ["cad", "programmatic", "code-cad"] keywords = ["cad", "programmatic", "code-cad"]
categories = ["mathematics"] categories = ["mathematics"]
[dependencies] [dependencies]
nalgebra = "0.30.0" nalgebra = "0.30.0"
parry3d-f64 = "0.8.0" parry3d-f64 = "0.8.0"
[dependencies.fj] [dependencies.fj]
version = "0.5.0" version = "0.5.0"
path = "../fj" path = "../fj"
[dependencies.fj-math] [dependencies.fj-math]
version = "0.5.0" version = "0.5.0"
path = "../fj-math" path = "../fj-math"
[dependencies.fj-debug] [dependencies.fj-debug]
version = "0.5.0" version = "0.5.0"
path = "../fj-debug" path = "../fj-debug"
[dependencies.fj-kernel] [dependencies.fj-kernel]
version = "0.5.0" version = "0.5.0"
path = "../fj-kernel" path = "../fj-kernel"

View File

@ -1,5 +1,5 @@
[package] [package]
name = "cuboid" name = "cuboid"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"

View File

@ -1,5 +1,5 @@
[package] [package]
name = "group" name = "group"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"

View File

@ -1,5 +1,5 @@
[package] [package]
name = "spacer" name = "spacer"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"

View File

@ -1,5 +1,5 @@
[package] [package]
name = "star" name = "star"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"

View File

@ -6,21 +6,21 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
anyhow = "1.0.56" anyhow = "1.0.56"
cargo_metadata = "0.14.2" cargo_metadata = "0.14.2"
cmd_lib = "1.3.0" cmd_lib = "1.3.0"
env_logger = "0.9.0" env_logger = "0.9.0"
log = "0.4.16" log = "0.4.16"
regex = "1.5.5" regex = "1.5.5"
secstr = "0.5.0" secstr = "0.5.0"
semver = "1.0.7" semver = "1.0.7"
serde_json = "1.0.79" serde_json = "1.0.79"
[dependencies.clap] [dependencies.clap]
version = "3.1.8" version = "3.1.8"
features = ["std", "derive", "env"] features = ["std", "derive", "env"]
default_features = false default_features = false
[dependencies.serde] [dependencies.serde]
version = "1.0.136" version = "1.0.136"
features = ["derive"] features = ["derive"]