forked from Buckram123/cw-croncat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
79 lines (76 loc) · 3.37 KB
/
Cargo.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[workspace]
members = ["contracts/*", "packages/*", "integration-sdk/*"]
[profile.release]
codegen-units = 1
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
panic = 'abort'
incremental = false
overflow-checks = true
[workspace.package]
version = "1.0.3"
authors = [
"@tjtc",
"@mikedotexe",
"@NinoLipartiia",
"@Buckram123",
"deveusss",
]
edition = "2021"
description = "CronCat provides a general purpose, fully autonomous network that enables scheduled function calls for blockchain contract execution. It allows any application to schedule logic to get executed in the future, once or many times, triggered by an approved “agent,” in an economically stable format."
documentation = "https://docs.cron.cat/"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
serde = { version = "1.0" }
cosmwasm-std = { version = "1.2" }
serde-cw-value = "0.7.0"
thiserror = { version = "1.0" }
cosmwasm-schema = { version = "1.2" }
rusty-hook = "0.11.2"
#For some reason it tries to deploy cw_core here
# voting = { version = "0.2.0", default-features = false, git = "https://github.com/DA0-DA0/dao-contracts" }
cw20 = { version = "0.16.0" }
cw-multi-test = { version = "0.16.0" }
cw20-base = { version = "0.16.0" }
cw-storage-plus = "1.0.1"
cron_schedule = "0.2.3"
cw2 = "1.0.1"
hex = { version = "0.4", default-features = false }
sha2 = { version = "0.10.6", default-features = false }
serde-json-wasm = { version = "0.5.0" }
cw-utils = "0.16.0"
cw721 = "0.16.0"
# DAO contracts
dao-voting = { version = "2.0.0-beta", git = "https://github.com/DA0-DA0/dao-contracts.git" }
dao-proposal-single = { version = "2.0.0-beta", git = "https://github.com/DA0-DA0/dao-contracts" }
dao-proposal-multiple = { version = "2.0.0-beta", git = "https://github.com/DA0-DA0/dao-contracts" }
dao-voting-cw20-staked = { version = "2.0.0-beta", git = "https://github.com/DA0-DA0/dao-contracts" }
cw20-stake = { version = "2.0.0-beta", git = "https://github.com/DA0-DA0/dao-contracts" }
dao-core = { version = "2.0.0-beta", git = "https://github.com/DA0-DA0/dao-contracts" }
dao-interface = { version = "2.0.0-beta", git = "https://github.com/DA0-DA0/dao-contracts" }
# Testing generic msg
cw4 = "1.0.1"
cw4-group = "1.0.1"
base64 = "0.13.0"
serde_json = { version = "1.0" }
anyhow = "1"
cw721-base = "0.16.0"
croncat-agents = { version = "1.0.3", path = "./contracts/croncat-agents" }
croncat-manager = { version = "1.0.3", path = "./contracts/croncat-manager" }
croncat-tasks = { version = "1.0.3", path = "./contracts/croncat-tasks" }
croncat-factory = { version = "1.0.3", path = "./contracts/croncat-factory" }
croncat-mod-balances = { version = "1.0.3", path = "./contracts/mod-balances" }
croncat-mod-dao = { version = "1.0.3", path = "./contracts/mod-dao" }
croncat-mod-generic = { version = "1.0.3", path = "./contracts/mod-generic" }
croncat-mod-nft = { version = "1.0.3", path = "./contracts/mod-nft" }
croncat-sdk-agents = { version = "1.0.3", path = "./packages/croncat-sdk-agents" }
croncat-sdk-core = { version = "1.0.3", path = "./packages/croncat-sdk-core" }
croncat-sdk-tasks = { version = "1.0.3", path = "./packages/croncat-sdk-tasks" }
mod-sdk = { version = "1.0.3", path = "./packages/mod-sdk" }
croncat-sdk-factory = { version = "1.0.3", path = "./packages/croncat-sdk-factory" }
croncat-sdk-manager = { version = "1.0.3", path = "./packages/croncat-sdk-manager" }
cw-boolean-contract = "0.1.4"