-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
101 lines (98 loc) · 2.38 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[workspace]
resolver = "2"
members = [
"core",
"api",
"proc-macro",
"transactor",
"cli",
"storage",
"encryptor",
"transport",
"facade",
"env",
"client",
"test",
"local-db",
"examples/minimal",
# "examples/draw-card",
# "examples/raffle",
# "examples/simple-settle",
# "examples/blackjack",
# "examples/roshambo",
# "examples/chat",
]
[workspace.dependencies]
race-api = { path = "api", version = ">=0.2.6" }
race-local-db = { path = "local-db", version = ">=0.2.6" }
race-proc-macro = { path = "proc-macro", version = ">=0.2.6" }
race-core = { path = "core", version = ">=0.2.6" }
race-client = { path = "client", version = ">=0.2.6" }
race-encryptor = { path = "encryptor", version = ">=0.2.6" }
race-test = { path = "test", version = ">=0.2.6" }
race-env = { path = "env", version = "*" }
race-transport = { path = "transport", version = "*" }
race-storage = { path = "storage", version = "*" }
aes = "0.8.2"
anyhow = "1.0.64"
arrayref = "0.3.6"
async-stream = "0.3.3"
async-trait = "0.1.58"
base64 = "0.21.0"
borsh = { version = "1.5.1", features = ["derive"] }
chacha20 = "0.9.1"
chrono = "0.4.24"
clap = "4.0.26"
ctr = "0.9.2"
futures = "0.3.25"
getrandom = "0.2"
hex = "0.4.3"
hyper = "0.14.20"
infer = "0.15.0"
jsonrpsee = "0.17.1"
openssl = { version = "^0.10" }
prettytable-rs = "^0.10"
project-root = "0.2.2"
quote = "1.0.23"
rand = "0.8.5"
regex = "1"
reqwest = "0.11.16"
rs_merkle = "1.4.2"
rusqlite = "0.32.0"
serde = "1.0.144"
serde_json = "1.0.85"
sha2 = "0.10.8"
sha256 = "1.5.0"
shellexpand = "3.0.0"
solana-account-decoder = "2.0.8"
solana-pubsub-client = "2.0.8"
solana-rpc-client = "2.0.8"
solana-rpc-client-api = "2.0.8"
solana-sdk = "2.0.8"
solana-transaction-status = "2.0.8"
spl-associated-token-account = "5.0.0"
spl-token = "6.0.0"
syn = "1.0.107"
thiserror = "1.0.35"
time = "0.3.36"
tokio = "1.27.0"
tokio-stream = "0.1.11"
toml = "0.5.9"
tower = "0.4.13"
tower-http = "0.4.4"
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-subscriber = "0.3.18"
uuid = { version = "1.1.2", features = ["v4", "fast-rng"] }
wasmer = "4.4.0"
[workspace.package]
authors = ["RACE Foundation <race.game.team@gmail.com>"]
version = "0.2.6"
edition = "2021"
rust-version = "1.65.0"
license = "MPL-2.0"
repository = "https://github.com/RACE-Game/race"
documentation = "https://docs.rs/race"
homepage = "https://race-protocol.pages.dev"
keywords = ["blockchain"]
readme = "README.md"