-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 949 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "crypto-publisher",
"version": "1.0.0",
"description": "This app is for learn Rust from post https://sungkim11.medium.com/learn-rust-by-example-develop-crypto-publisher-cli-application-be5af17e03ae https://medium.com/geekculture/learn-rust-by-example-develop-crypto-publisher-apache-kafka-application-16b22ab88199",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install": "cargo install --path=./",
"run": "RUST_BACKTRACE=FULL cargo run -- --interval 1000 --currency BTC --rates GBP --frequency 5",
"format": "rustfmt ./src/**/*.rs --edition 2021"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sungkim11/crypto-publisher.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sungkim11/crypto-publisher/issues"
},
"homepage": "https://github.com/sungkim11/crypto-publisher#readme"
}