-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 1.72 KB
/
Copy pathCargo.toml
File metadata and controls
38 lines (35 loc) · 1.72 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
[workspace]
members = [
"crates/chain-core",
"crates/bitcoin-services",
"crates/tron-services",
"crates/core",
"crates/evm-services",
"crates/app-services",
"crates/desktop-api",
"crates/mobile-bridge",
"apps/desktop/src-tauri",
]
resolver = "2"
[workspace.package]
edition = "2021"
rust-version = "1.89"
license = "MIT"
repository = "https://github.com/0xfnzero/FnzSafe"
[workspace.dependencies]
fnzero-safe-core = { path = "crates/core", version = "0.1.8" }
fnzero-safe-chain-core = { path = "crates/chain-core", version = "0.1.0" }
fnzero-safe-bitcoin-services = { path = "crates/bitcoin-services", version = "0.1.0" }
fnzero-safe-tron-services = { path = "crates/tron-services", version = "0.1.0" }
fnzero-safe-evm-services = { path = "crates/evm-services", version = "0.1.1" }
fnzero-safe-app-services = { path = "crates/app-services", version = "0.1.0" }
# CEF support is currently shipped from Tauri's pinned preview tag. Keep every
# Tauri crate on the same source so plugins use the Chromium runtime as well.
[patch.crates-io]
tauri = { git = "https://github.com/tauri-apps/tauri.git", tag = "tauri-cef-v3.0.0-alpha.25" }
tauri-build = { git = "https://github.com/tauri-apps/tauri.git", tag = "tauri-cef-v3.0.0-alpha.25" }
tauri-codegen = { git = "https://github.com/tauri-apps/tauri.git", tag = "tauri-cef-v3.0.0-alpha.25" }
tauri-macros = { git = "https://github.com/tauri-apps/tauri.git", tag = "tauri-cef-v3.0.0-alpha.25" }
tauri-plugin = { git = "https://github.com/tauri-apps/tauri.git", tag = "tauri-cef-v3.0.0-alpha.25" }
tauri-runtime = { git = "https://github.com/tauri-apps/tauri.git", tag = "tauri-cef-v3.0.0-alpha.25" }
tauri-utils = { git = "https://github.com/tauri-apps/tauri.git", tag = "tauri-cef-v3.0.0-alpha.25" }