-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathScarb.toml
37 lines (30 loc) · 1.24 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
[package]
name = "coloniz"
version = "0.1.0"
edition = "2024_07"
authors = ["Horus Labs <horuslabsio@gmail.com>"]
description = "Decentralized Social Graph on Starknet"
repository = "https://github.com/horuslabsio/coloniz-core"
keywords = ["coloniz", "SocialFi", "tokenbound", "cairo", "contracts", "starknet"]
# See more keys and their definitions at https://docs.swmansion.com/scarb/docs/reference/manifest.html
[dependencies]
starknet = "2.8.2"
token_bound_accounts= { git = "https://github.com/horuslabsio/TBA", branch = "v3.1.0"}
alexandria_bytes = { git = "https://github.com/keep-starknet-strange/alexandria.git" }
openzeppelin_token = "0.17.0"
openzeppelin_introspection = "0.17.0"
openzeppelin_access = "0.17.0"
openzeppelin_upgrades = "0.17.0"
[dev-dependencies]
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry", tag = "v0.31.0" }
[sncast.default]
url= "https://starknet-sepolia.public.blastapi.io"
[[target.starknet-contract]]
casm = true
build-external-contracts = ["token_bound_accounts::accountV3::accountV3::AccountV3"]
allowed-libfuncs-list.name = "experimental"
[profile.dev.cairo]
unstable-add-statements-code-locations-debug-info = true
unstable-add-statements-functions-debug-info = true
inlining-strategy = "avoid"
[lib]