-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScarb.toml
More file actions
28 lines (23 loc) · 1023 Bytes
/
Scarb.toml
File metadata and controls
28 lines (23 loc) · 1023 Bytes
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
[package]
name = "sp_strk"
version = "0.1.0"
edition = "2024_07"
[dependencies]
# Use the modular approach for v3
starknet = "2.13.1"
openzeppelin_token = { git = "https://github.com/OpenZeppelin/cairo-contracts", tag = "v3.0.0-alpha.3" }
openzeppelin_access = { git = "https://github.com/OpenZeppelin/cairo-contracts", tag = "v3.0.0-alpha.3" }
openzeppelin_upgrades = { git = "https://github.com/OpenZeppelin/cairo-contracts", tag = "v3.0.0-alpha.3" }
openzeppelin_security = { git = "https://github.com/OpenZeppelin/cairo-contracts", tag = "v3.0.0-alpha.3" }
openzeppelin_interfaces = { git = "https://github.com/OpenZeppelin/cairo-contracts", tag = "v3.0.0-alpha.3" }
openzeppelin_introspection = { git = "https://github.com/OpenZeppelin/cairo-contracts", tag = "v3.0.0-alpha.3" }
[dev-dependencies]
snforge_std = "0.52.0"
assert_macros = "2.13.1"
[[target.starknet-contract]]
sierra = true
casm = true
[scripts]
test = "snforge test"
[tool.scarb]
allow-prebuilt-plugins = ["snforge_std"]