-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClarinet.toml
47 lines (37 loc) · 965 Bytes
/
Clarinet.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
[project]
name = "tiny-market"
authors = []
description = ""
telemetry = true
requirements = []
boot_contracts = ["pox", "costs-v2", "bns"]
[project.cache_location]
path = ".requirements"
[contracts.sip009-nft]
path = "contracts/sip009-nft.clar"
depends_on = ["sip009-nft-trait"]
[contracts.bogus-nft]
path = "contracts/sip009-nft.clar"
depends_on = ["sip009-nft-trait"]
[contracts.sip009-nft-trait]
path = "contracts/sip009-nft-trait.clar"
[contracts.sip010-ft-trait]
path = "contracts/sip010-ft-trait.clar"
[contracts.sip010-token]
path = "contracts/sip010-token.clar"
depends_on = ["sip010-ft-trait"]
[contracts.bogus-ft]
path = "contracts/sip010-token.clar"
depends_on = ["sip010-ft-trait"]
[contracts.tiny-market]
path = "contracts/tiny-market.clar"
[repl]
costs_version = 2
parser_version = 2
[repl.analysis]
passes = ["check_checker"]
[repl.analysis.check_checker]
strict = false
trusted_sender = false
trusted_caller = false
callee_filter = false