-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
55 lines (49 loc) · 1.33 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
[workspace]
members = [
"cli",
"ecs/core",
"ecs/sdk",
"ecs/parser",
"ecs/svm",
"ecs/svm/programs/rush-proxy",
"ecs/svm/programs/rush-store",
"ecs/keystore",
"ecs/manifest",
]
exclude = [
]
resolver = "2"
[workspace.package]
version = "0.2.4"
authors = ["Sonic Engineering <engineering@sonic.game>"]
repository = "https://github.com/mirrorworld-universe/rush"
homepage = "https://www.sonic.game/"
license = "Apache-2.0"
edition = "2021"
keywords = ["rush", "ecs", "sonic", "gamedev", "cli"]
[workspace.dependencies]
anyhow = "1.0.90"
arrayref = "0.3.8"
async-trait = "0.1.82"
assert_matches = "1.5.0"
borsh = { version = "1.5.1", features = ["derive"] }
clap = "4.5.16"
colored = "2.1.0"
num-derive = "0.4.2"
num-traits = "0.2.19"
thiserror = "1.0.64"
tokio = { version = "1.40.0", features = ["rt-multi-thread"] }
toml = "0.8.19"
shank = "0.4.2"
solana-program = "=2.0.13"
solana-program-test = "=2.0.13"
solana-sdk = "=2.0.13"
solana-client = "=2.0.13"
spl-discriminator = "0.3.0"
spl-program-error = "0.5.0"
rush-cli = { version = "0.2.4", path = "cli" }
rush-ecs-core = { version = "0.2.4", path = "ecs/core" }
rush-ecs-manifest = { version = "0.2.4", path = "ecs/manifest" }
rush-ecs-parser = { version = "0.2.4", path = "ecs/parser" }
rush-ecs-svm = { version = "0.2.4", path = "ecs/svm" }
rush-ecs-sdk = { version = "0.2.4", path = "ecs/sdk" }