-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathScarb.toml
More file actions
68 lines (62 loc) · 2.13 KB
/
Scarb.toml
File metadata and controls
68 lines (62 loc) · 2.13 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
67
68
# Copyright 2025 Circle Internet Group, Inc. All rights reserved.
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[workspace]
members = [
"packages/utils",
"packages/test_utils",
"packages/message",
"packages/components",
"packages/message_transmitter",
"packages/token_messenger_minter",
"packages/interfaces"
]
[workspace.package]
version = "0.1.0"
edition = "2024_07"
cairo-version = "2.12.0"
scarb-version = "2.12.0"
authors = ["Circle"]
description = "CCTP Contracts Starknet"
homepage = "https://www.circle.com"
license-file = "LICENSE"
repository = "https://github.com/circlefin/starknet-cctp"
documentation = "https://developers.circle.com/starknet/docs"
keywords = [
"starknet",
"cctp",
"contracts"
]
[workspace.dependencies]
assert_macros = "2.12.0"
starknet = "2.12.0"
snforge_std = "0.48.1"
utils = { path = "packages/utils" }
test_utils = { path = "packages/test_utils" }
message = { path = "packages/message" }
cctp_components = { path = "packages/components" }
interfaces = { path = "packages/interfaces" }
message_transmitter = { path = "packages/message_transmitter" }
token_messenger_minter = { path = "packages/token_messenger_minter" }
components = { git = "https://github.com/circlefin/stablecoin-starknet.git" }
stablecoin = { git = "https://github.com/circlefin/stablecoin-starknet.git" }
[workspace.tool.fmt]
[workspace.tool.scarb]
allow-prebuilt-plugins = ["snforge_std"]
# Required for generating coverage report
[profile.dev.cairo]
unstable-add-statements-functions-debug-info = true
unstable-add-statements-code-locations-debug-info = true
inlining-strategy = "avoid"