-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (58 loc) · 2.24 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (58 loc) · 2.24 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "raccoin"
version = "0.2.0"
description = "Crypto Portfolio and Tax Reporting Tool"
homepage = "https://raccoin.org/"
repository = "https://github.com/bjorn/raccoin"
license = "GPL-3.0-or-later"
authors = ["Thorbjørn Lindeijer <bjorn@lindeijer.nl>"]
edition = "2021"
build = "build.rs"
include = ["src/**/*", "LICENSE", "README.md", "build.rs"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
alloy-chains = "0.2"
alloy-primitives = "1.5"
anyhow = "1.0.75"
ciborium = "0.2"
bitcoin = "0.32"
chrono = { version = "0.4.31", features = ["serde"] }
chrono-tz = "0.10"
csv = "1.2"
directories = "6.0"
esplora-client = { version = "0.12", default-features = false, features = ["async", "tokio"] }
foundry-block-explorers = "0.22"
futures = "0.3.28"
linkme = "0.3"
open = "5.0.0"
pathdiff = "0.2.1"
raccoin_ui = { version = "0.2", path = "raccoin_ui" }
regex = "1.10.2"
reqwest = { version = "0.12", features = ["json"] }
rfd = "0.17"
rust_decimal = { version = "1.33", features = ["serde-str"] }
rust_decimal_macros = "1.33"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
slice-group-by = "0.3.1"
stellar-base = { version = "0.7", default-features = false }
stellar-horizon = { version = "0.8" }
strum = { version = "0.27", features = ["derive"] }
tokio = { version = "1.33.0", features = ["macros", "rt-multi-thread"] }
[target.'cfg(target_os = "linux")'.dependencies]
slint = { version = "1.15.0", default-features = false, features = ["compat-1-2", "std", "backend-winit", "renderer-skia"] }
[target.'cfg(not(target_os = "linux"))'.dependencies]
slint = { version = "1.15.0", default-features = false, features = ["compat-1-2", "std", "backend-winit", "renderer-femtovg", "renderer-software"] }
[target.'cfg(target_family = "windows")'.build-dependencies]
windows_exe_info = "0.5"
[profile.dev]
opt-level = 0
[profile.dev.package."*"]
opt-level = 3
[package.metadata.packager]
identifier = "org.raccoin.Raccoin"
product-name = "Raccoin"
description = "Crypto Portfolio and Tax Reporting Tool"
icons = ["raccoin_ui/ui/icons/Raccoin.icns", "raccoin_ui/ui/icons/raccoin.ico", "raccoin_ui/ui/icons/app-icon-64.png"]
homepage = "https://raccoin.org/"
license_file = "LICENSE"