Skip to content
This repository has been archived by the owner on May 12, 2022. It is now read-only.

Commit

Permalink
style: sort dependencies by name
Browse files Browse the repository at this point in the history
  • Loading branch information
yvt committed Feb 16, 2020
1 parent 005fda2 commit 3aebf68
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
24 changes: 12 additions & 12 deletions stella2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,33 +10,33 @@ license = "GPL-3.0-or-later"
default-run = "stella2"

[dependencies]
chrono = "0.4"
tcw3 = { path = "../tcw3" }
harmony = { path = "../harmony", features = ["miniserde"] }
stella2_assets = { path = "../stella2_assets" }
stella2_meta = { path = "meta" }
cfg-if = "0.1.7"
cggeom = { path = "../support/cggeom" }
cgmath = "0.17.0"
cfg-if = "0.1.7"
displaydoc = "0.1.5"
chrono = "0.4"
dirs = "2.0.2"
fslock = "0.1.4"
nativedispatch = { path = "../support/nativedispatch" }
stvg_tcw3 = { path = "../stvg/tcw3" }
subscriber_list = { path = "../support/subscriber_list" }
displaydoc = "0.1.5"
enclose = "1.1.6"
env_logger = "0.7.0"
fslock = "0.1.4"
harmony = { path = "../harmony", features = ["miniserde"] }
iota = "0.2.1"
miniserde = "0.1.12"
nativedispatch = { path = "../support/nativedispatch" }
stella2_assets = { path = "../stella2_assets" }
stella2_meta = { path = "meta" }
stvg_tcw3 = { path = "../stvg/tcw3" }
subscriber_list = { path = "../support/subscriber_list" }
tcw3 = { path = "../tcw3" }

[target.'cfg(target_os = "windows")'.dependencies]
stella2_windres = { path = "../res/windres" }
winapi = { version = "0.3.8", features = ["winuser", "libloaderapi"] }
windebug_logger = "0.1.3"

[target.'cfg(target_os = "macos")'.dependencies]
objc = "0.2.3"
cocoa = "0.20.0"
objc = "0.2.3"

[dependencies.log]
version = "0.4"
Expand Down
32 changes: 16 additions & 16 deletions tcw3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,42 +9,42 @@ license = "MIT"
testing = ["tcw3_pal/testing", "tcw3_testing/testing"]

[dependencies]
alt_fp = { path = "../support/alt_fp" }
arrayvec = "0.5"
cgmath = "0.17.0"
as_any = { path = "../support/as_any" }
bitflags = "1.1.0"
cggeom = { path = "../support/cggeom" }
cgmath = "0.17.0"
derive_more = "0.99.1"
flags-macro = "0.1.3"
iterpool = { path = "../support/iterpool" }
derive_more = "0.99.1"
subscriber_list = { path = "../support/subscriber_list" }
as_any = { path = "../support/as_any" }
alt_fp = { path = "../support/alt_fp" }
owning_ref = "0.4.0"
rope = { path = "../support/rope" }
svgbobdoc = "0.2"
sorted_diff = { path = "../support/sorted_diff" }
lazy_static = "1"
itertools = "0.8.0"
ndarray = "0.13.0"
lazy_static = "1"
log = "0.4"
neo_linked_list = { path = "../support/neo_linked_list" }
minisort = { path = "../support/minisort" }
ndarray = "0.13.0"
neo_linked_list = { path = "../support/neo_linked_list" }
owning_ref = "0.4.0"
rope = { path = "../support/rope" }
sorted_diff = { path = "../support/sorted_diff" }
subscriber_list = { path = "../support/subscriber_list" }
svgbobdoc = "0.2"

tcw3_designer_runtime = { path = "designer_runtime" }
tcw3_images = { path = "images" }
tcw3_meta = { path = "meta" }
tcw3_pal = { path = "pal" }
tcw3_testing = { path = "testing" }
tcw3_meta = { path = "meta" }

[dependencies.momo]
git = "https://github.com/llogiq/momo.git"
rev = "3d9d9709a5675bf3f5ebddcb3c1ec8ccf91e9b40"

[dev-dependencies]
lipsum = "0.6.0"
structopt = "0.3.0"
enclose = "1.1.8"
env_logger = "0.7.0"
try_match = { version = "0.2.1", default-features = false, features = ["std"] }
lipsum = "0.6.0"
quickcheck = "0.9"
quickcheck_macros = "0.8"
structopt = "0.3.0"
try_match = { version = "0.2.1", default-features = false, features = ["std"] }

0 comments on commit 3aebf68

Please sign in to comment.