-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScarb.toml
More file actions
66 lines (53 loc) · 2.62 KB
/
Copy pathScarb.toml
File metadata and controls
66 lines (53 loc) · 2.62 KB
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
61
62
63
64
65
66
[package]
name = "crowd_pass"
description = "A ticketing platform on Starknet"
version = "0.0.200"
edition = "2024_07"
authors = [
"David Dada <daveproxy80@gmail.com>",
"Manoah Luka <manoahluka@gmail.com>",
"Olorunsogo Banwo <sogobanwo@gmail.com>",
"Olwakemi Atoyebi <atokemmy@gmail.com>",
]
homepage = "https://www.crowdpass.live/"
cairo_version = "2.8.5"
keywords = ["crowdpass", "event", "cairo", "contracts", "starknet", "standards"]
[dependencies]
starknet = "2.8.5"
openzeppelin = "0.17.0"
token_bound_accounts = "0.3.1"
alexandria_data_structures = "0.4.0"
[dev-dependencies]
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry", tag = "v0.41.0" }
[[target.starknet-contract]]
sierra = true
casm = true
[scripts]
test = "snforge test"
[tool.voyager]
event_factory = { path = "event_factory/event_factory.cairo" }
ticket_721 = { path = "tickets/ticket_721.cairo" }
[[tool.snforge.fork]]
name = "SEPOLIA_LATEST"
url = "https://starknet-sepolia.public.blastapi.io/rpc/v0_8"
block_id.tag = "latest"
[profile.dev.cairo] # Configure Cairo compiler
unstable-add-statements-code-locations-debug-info = true # Should be used if you want to use coverage
unstable-add-statements-functions-debug-info = true # Should be used if you want to use coverage/profiler
inlining-strategy = "avoid" # Should be used if you want to use coverage
# See more keys and their definitions at https://docs.swmansion.com/scarb/docs/reference/manifest.html
# Visit https://foundry-rs.github.io/starknet-foundry/appendix/scarb-toml.html for more information
# [tool.snforge] # Define `snforge` tool section
# exit_first = true # Stop tests execution immediately upon the first failure
# fuzzer_runs = 1234 # Number of runs of the random fuzzer
# fuzzer_seed = 1111 # Seed for the random fuzzer
# [[tool.snforge.fork]]
# name = "SOME_SECOND_NAME"
# url = "http://your.second.rpc.url"
# block_id.number = "123" # Block to fork from (block number)
# [[tool.snforge.fork]]
# name = "SOME_THIRD_NAME"
# url = "http://your.third.rpc.url"
# block_id.hash = "0x123" # Block to fork from (block hash)
# [features] # Used for conditional compilation
# enable_for_tests = [] # Feature name and list of other features that should be enabled with it