forked from thebracket/HandsOnRust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (57 loc) · 2.03 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "parent_delete_me"
version = "0.1.0"
authors = ["Herbert Wolverson <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"InstallingRust/Clippy",
"InstallingRust/ClippyFixed",
"InstallingRust/HelloWorld",
"FirstStepsWithRust/hello_yourname",
"FirstStepsWithRust/hello_yourname_function",
"FirstStepsWithRust/treehouse_guestlist",
"FirstStepsWithRust/treehouse_guestlist_enum",
"FirstStepsWithRust/treehouse_guestlist_problem",
"FirstStepsWithRust/treehouse_guestlist_struct",
"FirstStepsWithRust/treehouse_guestlist_trim",
"FirstStepsWithRust/treehouse_guestlist_vector",
"FirstGameFlappyAscii/flappy_dragon",
"FirstGameFlappyAscii/flappy_bonus",
"FirstGameFlappyAscii/flappy_player",
"FirstGameFlappyAscii/flappy_states",
"FirstGameFlappyAscii/hello_bterm",
"BasicDungeonCrawler/dungeon_crawl_map",
"BasicDungeonCrawler/dungeon_crawl_player",
"BasicDungeonCrawler/dungeon_crawl_rooms",
"BasicDungeonCrawler/dungeon_crawl_graphics",
"EntitiesComponentsAndSystems/dungeonecs",
"EntitiesComponentsAndSystems/playerecs",
"TurnBasedGames/wandering",
"TurnBasedGames/turnbased",
"TurnBasedGames/intent",
"HealthSimpleMelee/health",
"HealthSimpleMelee/combat",
"HealthSimpleMelee/healing",
"WinningAndLosing/gauntlet",
"WinningAndLosing/losing",
"WinningAndLosing/winning",
"WhatCanISee/fov",
"WhatCanISee/eyesight",
"WhatCanISee/memory",
"MoreInterestingDungeons/traits",
"MoreInterestingDungeons/traits_rooms",
"MoreInterestingDungeons/cellular",
"MoreInterestingDungeons/output_harness",
"MoreInterestingDungeons/drunkard",
"MoreInterestingDungeons/prefab",
"MapTheming/themed",
"InventoryAndPowerUps/potions_and_scrolls",
"InventoryAndPowerUps/carrying_items",
"DeeperDungeons/more_levels",
"Loot/loot_tables",
"Loot/better_combat"
]
[profile.release]
lto = "thin"