-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
63 lines (54 loc) · 1.66 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
[package]
name = "sugarfunge-api"
version = "0.1.0"
edition = "2021"
[workspace]
members = ["crates/*"]
[features]
default = ["std"]
std = ["codec/std", "scale-info/std"]
[dependencies]
sugarfunge-api-types = { path = "crates/sugarfunge-api-types" }
env_logger = "0.10.0"
clap = { version = "4.2.5", features = ["derive"] }
rand = "0.8.5"
hex = "0.4.3"
futures = "0.3"
crossbeam = "0.8"
actix = "0.13"
actix-web = "4.3"
actix-web-actors = "4.2"
actix-cors = "0.6.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.96"
jsonrpsee-types = "0.18.2"
url = { version = "2", features = ["serde"] }
derive_more = { version = "0.99.17", default-features = false }
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive", "full", "bit-vec"] }
scale-info = { version = "2.5.0", features = ["bit-vec"] }
[dependencies.subxt]
git = "https://github.com/paritytech/subxt.git"
branch = "master"
features = ["substrate-compat"]
[dependencies.sp-keyring]
git = "https://github.com/paritytech/polkadot-sdk.git"
branch = "release-polkadot-v1.6.0"
package = "sp-keyring"
[dependencies.sp-std]
git = "https://github.com/paritytech/polkadot-sdk.git"
branch = "release-polkadot-v1.6.0"
package = "sp-std"
[dependencies.sp-io]
git = "https://github.com/paritytech/polkadot-sdk.git"
branch = "release-polkadot-v1.6.0"
package = "sp-io"
features = []
[dependencies.sp-core]
git = "https://github.com/paritytech/polkadot-sdk.git"
branch = "release-polkadot-v1.6.0"
package = "sp-core"
features = ["full_crypto"]
[dependencies.sp-runtime]
git = "https://github.com/paritytech/polkadot-sdk.git"
branch = "release-polkadot-v1.6.0"
package = "sp-runtime"