-
Notifications
You must be signed in to change notification settings - Fork 1
/
Scarb.toml
49 lines (41 loc) · 1.58 KB
/
Scarb.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
[package]
cairo-version = "=2.7.0"
name = "myapp"
version = "0.0.0"
[cairo]
sierra-replace-ids = true
[dependencies]
pixelaw = { git = "https://github.com/pixelaw/core", tag = "v0.4.6" }
# pixelaw = { path = "../core/contracts" }
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.0-alpha.17" }
[[target.dojo]]
build-external-contracts = [
"pixelaw::apps::snake::app::snake",
"pixelaw::apps::snake::app::snake_segment",
"pixelaw::core::models::area::area",
"pixelaw::core::models::area::Area",
"pixelaw::core::models::pixel::pixel",
"pixelaw::core::models::pixel::Pixel",
"pixelaw::core::models::pixel::PixelUpdate",
"pixelaw::core::models::queue::queue_item",
"pixelaw::core::models::registry::app",
"pixelaw::core::models::registry::app_name",
"pixelaw::core::models::registry::app_user",
"pixelaw::core::models::registry::core_actions_address",
"pixelaw::core::utils::get_core_actions",
"pixelaw::core::utils::Direction",
"pixelaw::core::utils::Position",
"pixelaw::core::utils::DefaultParameters",
"pixelaw::core::actions::actions",
"pixelaw::core::actions::IActionsDispatcher",
"pixelaw::core::actions::IActionsDispatcherTrait"
]
[tool.fmt]
sort-module-level-items = true
[scripts]
ready_for_deployment = "bash ./scripts/ready_for_deployment.sh"
initialize = "bash ./scripts/default_auth.sh"
upload_manifest = "bash ./scripts/upload_manifest.sh"
ready_for_deployment_zsh = "zsh ./scripts/ready_for_deployment.sh"
initialize_zsh = "zsh ./scripts/default_auth.sh"
upload_manifest_zsh = "zsh ./scripts/upload_manifest.sh"