forked from starcoinorg/starcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (25 loc) · 1.35 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
[package]
name = "starcoin-stratum"
version = "1.11.10"
authors = ["Starcoin Core Dev <[email protected]>"]
edition = "2021"
[dependencies]
jsonrpc-tcp-server = { git = "https://github.com/lemonhx/jsonrpc", rev = "1d8a58e642a919af65a3d9d5ee94bca3eef321e9" }
jsonrpc-derive = { git = "https://github.com/lemonhx/jsonrpc", rev = "1d8a58e642a919af65a3d9d5ee94bca3eef321e9" }
jsonrpc-core = { git = "https://github.com/lemonhx/jsonrpc", rev = "1d8a58e642a919af65a3d9d5ee94bca3eef321e9", features = ["arbitrary_precision"] }
jsonrpc-pubsub = { git = "https://github.com/lemonhx/jsonrpc", rev = "1d8a58e642a919af65a3d9d5ee94bca3eef321e9" }
jsonrpc-core-client = { git = "https://github.com/lemonhx/jsonrpc", rev = "1d8a58e642a919af65a3d9d5ee94bca3eef321e9" }
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
serde = { version = "1.0.130" }
hex = { version = "0.4.3", default-features = false }
byteorder = "1.3.4"
anyhow = "1.0.41"
futures = "0.3.12"
starcoin-service-registry = { path = "../commons/service-registry" }
starcoin-types = { path = "../types" }
starcoin-miner = { path = "../miner" }
starcoin-logger = { path = "../commons/logger" }
starcoin-crypto = { git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc"}
starcoin-config = { path = "../config" }
[dev-dependencies]
stest = { path = "../commons/stest" }