-
- Downloads
chore: import gva module code
Showing
- CONTRIBUTING.md 78 additions, 0 deletionsCONTRIBUTING.md
- Cargo.lock 2795 additions, 0 deletionsCargo.lock
- Cargo.toml 47 additions, 0 deletionsCargo.toml
- README.md 19 additions, 0 deletionsREADME.md
- bca/Cargo.toml 30 additions, 0 deletionsbca/Cargo.toml
- bca/src/exec_req_type.rs 99 additions, 0 deletionsbca/src/exec_req_type.rs
- bca/src/exec_req_type/balances.rs 61 additions, 0 deletionsbca/src/exec_req_type/balances.rs
- bca/src/exec_req_type/current_ud.rs 30 additions, 0 deletionsbca/src/exec_req_type/current_ud.rs
- bca/src/exec_req_type/last_blockstamp_out_of_fork_window.rs 99 additions, 0 deletionsbca/src/exec_req_type/last_blockstamp_out_of_fork_window.rs
- bca/src/exec_req_type/members_count.rs 52 additions, 0 deletionsbca/src/exec_req_type/members_count.rs
- bca/src/exec_req_type/prepare_simple_payment.rs 223 additions, 0 deletionsbca/src/exec_req_type/prepare_simple_payment.rs
- bca/src/exec_req_type/send_txs.rs 65 additions, 0 deletionsbca/src/exec_req_type/send_txs.rs
- bca/src/exec_req_type/utxos.rs 58 additions, 0 deletionsbca/src/exec_req_type/utxos.rs
- bca/src/lib.rs 412 additions, 0 deletionsbca/src/lib.rs
- bca/types/Cargo.toml 20 additions, 0 deletionsbca/types/Cargo.toml
- bca/types/src/amount.rs 46 additions, 0 deletionsbca/types/src/amount.rs
- bca/types/src/identity.rs 22 additions, 0 deletionsbca/types/src/identity.rs
- bca/types/src/lib.rs 144 additions, 0 deletionsbca/types/src/lib.rs
- bca/types/src/prepare_payment.rs 32 additions, 0 deletionsbca/types/src/prepare_payment.rs
- bca/types/src/rejected_tx.rs 30 additions, 0 deletionsbca/types/src/rejected_tx.rs
CONTRIBUTING.md
0 → 100644
Cargo.lock
0 → 100644
This diff is collapsed.
Cargo.toml
0 → 100644
[package] | ||
name = "duniter-gva" | ||
version = "0.1.0" | ||
authors = ["librelois <elois@duniter.org>"] | ||
license = "AGPL-3.0" | ||
edition = "2018" | ||
[dependencies] | ||
anyhow = "1.0.33" | ||
arrayvec = "0.5.1" | ||
async-graphql = { version = "2.8", features = ["log"] } | ||
async-mutex = "1.4.0" | ||
async-trait = "0.1.41" | ||
bytes = "1.0" | ||
dubp = { version = "0.51.0", features = ["duniter"] } | ||
duniter-bca = { path = "./bca" } | ||
duniter-core = { git = "https://git.duniter.org/nodes/rust/duniter-core" } | ||
duniter-gva-db = { path = "./db" } | ||
duniter-gva-dbs-reader = { path = "./dbs-reader" } | ||
duniter-gva-indexer = { path = "./indexer" } | ||
duniter-gva-gql = { path = "./gql" } | ||
fast-threadpool = "0.2.3" | ||
flume = "0.10.0" | ||
futures = "0.3.6" | ||
http = "0.2.1" | ||
log = "0.4.11" | ||
resiter = "0.4.0" | ||
serde = { version = "1.0.105", features = ["derive"] } | ||
serde_urlencoded = "0.7.0" | ||
tokio = { version = "1.2", features = ["io-util", "rt-multi-thread"] } | ||
warp = "0.3" | ||
[dev-dependencies] | ||
duniter-core = { git = "https://git.duniter.org/nodes/rust/duniter-core", features = ["mem"] } | ||
mockall = "0.9.1" | ||
serde_json = "1.0.53" | ||
tokio = { version = "1.2", features = ["macros", "rt-multi-thread", "time"] } | ||
unwrap = "1.2.1" | ||
[workspace] | ||
members = [ | ||
"bca", | ||
"db", | ||
"dbs-reader", | ||
"gql", | ||
"indexer", | ||
] |
README.md
0 → 100644
bca/Cargo.toml
0 → 100644
bca/src/exec_req_type.rs
0 → 100644
bca/src/exec_req_type/balances.rs
0 → 100644
bca/src/exec_req_type/current_ud.rs
0 → 100644
bca/src/exec_req_type/members_count.rs
0 → 100644
bca/src/exec_req_type/send_txs.rs
0 → 100644
bca/src/exec_req_type/utxos.rs
0 → 100644
bca/src/lib.rs
0 → 100644
bca/types/Cargo.toml
0 → 100644
bca/types/src/amount.rs
0 → 100644
bca/types/src/identity.rs
0 → 100644
bca/types/src/lib.rs
0 → 100644
bca/types/src/prepare_payment.rs
0 → 100644
bca/types/src/rejected_tx.rs
0 → 100644
Please register or sign in to comment