-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 834 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 834 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
29
30
31
32
[workspace]
members = ["contracts/*", "packages/*"]
[workspace.package]
version = "0.1.0"
authors = ["PFC <pfc-validator@protonmail.com>"]
edition = "2021"
rust-version = "1.65.0"
license = "Apache-2.0"
homepage = "https://PFC.zone"
repository = "https://github.com/PFC-Validator/PFC-Notes"
documentation = "https://github.com/PFC-Validator/PFC-Notes#readme"
keywords = ["blockchain", "cosmos", "cosmwasm"]
[workspace.dependencies]
cosmwasm-schema = "1.2"
cosmwasm-std = "1.2"
cw2 = "1.0"
cw-ownable = "0.5"
thiserror = "1"
cw-storage-plus = {version="1.0"}
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = true
rpath = false