-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
44 lines (38 loc) · 1.15 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
[package]
name = "git-remote-inv4"
version = "0.1.0"
edition = "2021"
[dependencies]
#sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
#sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
ipfs-api = "0.16.0"
cid = "0.8.6"
hex = "0.4.3"
futures = "0.3.24"
temp-dir = "0.1.11"
git2 = { version = "0.15.0", default-features = false }
log = "0.4.17"
dirs = "4.0.0"
serde = "1.0.144"
toml = "0.5.9"
twox-hash = "1.6.3"
magic-crypt = "3.1.10"
rpassword = "7.0.0"
reqwest = { version = "0.11.12", features = ["multipart", "json"], optional = true }
base64 = { version = "0.13.0", optional = true }
serde_json = { version = "1.0.85", optional = true }
brotli = "3.3.4"
[dependencies.tokio]
version = "1.20.1"
features = ["macros", "rt-multi-thread", "process", "io-std"]
[dependencies.subxt]
git = "https://github.com/paritytech/subxt"
rev = "51179a8b72472d0b43c91cda75a1ddc3fddb9555"
[dependencies.codec]
package = "parity-scale-codec"
version = "3.2.1"
default-features = false
features = ["derive", "full", "bit-vec"]
[features]
default = []
crust = ["reqwest", "base64", "serde_json"]