forked from dancespiele/okspiel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (34 loc) · 996 Bytes
/
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
[package]
name = "okspiel"
version = "0.4.0"
authors = ["spielcrypto <[email protected]>"]
edition = "2018"
license = "MIT"
description = "Desktop application to handle remotely multiple Okcash full node wallets"
homepage = "https://github.com/dancespiele/okspiel"
readme = "README.md"
repository = "https://github.com/dancespiele/okspiel"
categories = ["cryptography::cryptocurrencies", "gui", "asynchronous"]
include = [
"**/*.rs",
"assets/*.svg",
"Cargo.toml"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
opt-level = "z"
[dependencies]
tokio = { version = "1.6.1", features = ["full"] }
iced = { version= "0.3", features = ["tokio", "qr_code", "svg"] }
sled = "0.34"
chrono = "0.4"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
reqwest= {version = "0.11", features = ["json"]}
dirs= "3.0"
copypasta= "0.7"
futures= "0.3"
dotenv = "0.15"
[package.metadata.deb]
assets = ["assets", "~/.okspiel/"]