-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (54 loc) · 2.06 KB
/
Cargo.toml
File metadata and controls
62 lines (54 loc) · 2.06 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
[package]
name = "sage-tauri"
version = "0.11.1"
description = "A next generation Chia wallet."
authors = ["Rigidity <me@rigidnetwork.com>"]
license = "Apache-2.0"
repository = "https://github.com/rigidity/sage"
edition = "2021"
[lints]
workspace = true
[lib]
name = "sage_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[dependencies]
sage = { workspace = true }
sage-api = { workspace = true, features = ["tauri"] }
sage-api-macro = { workspace = true }
sage-config = { workspace = true }
sage-wallet = { workspace = true }
sage-rpc = { workspace = true }
serde = { workspace = true, features = ["derive"] }
tauri = { workspace = true, features = [] }
tauri-specta = { workspace = true, features = ["derive", "typescript"] }
specta = { workspace = true }
specta-typescript = { workspace = true }
tauri-plugin-clipboard-manager = { workspace = true }
tokio = { workspace = true }
chia-wallet-sdk = { workspace = true, features = ["rustls"] }
tauri-plugin-opener = { workspace = true }
tauri-plugin-os = { workspace = true }
serde_json = { workspace = true, features = ["arbitrary_precision"] }
tracing = { workspace = true }
anyhow = { workspace = true }
rustls = { workspace = true }
reqwest = { workspace = true }
# This is to ensure that the bindgen feature is enabled for the aws-lc-rs crate.
# https://aws.github.io/aws-lc-rs/platform_support.html#tested-platforms
aws-lc-rs = { version = "1", features = ["bindgen"] }
tauri-plugin-sharesheet = "0.0.1"
tauri-plugin-store = "2.3.0"
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
tauri-plugin-window-state = { workspace = true }
tauri-plugin-dialog = "2"
tauri-plugin-fs = "2"
[target.'cfg(any(target_os = "android", target_os = "ios"))'.dependencies]
tauri-plugin-biometric = { workspace = true }
tauri-plugin-barcode-scanner = { workspace = true }
tauri-plugin-safe-area-insets = { workspace = true }
tauri-plugin-sage = { workspace = true }
[build-dependencies]
tauri-build = { workspace = true, features = [] }
glob = { workspace = true }
[package.metadata.cargo-machete]
ignored = ["serde_json", "aws-lc-rs"]