-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
97 lines (90 loc) · 2.9 KB
/
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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[workspace]
resolver = "2"
members = [
"crates/account_extras",
"crates/artifact",
"crates/cli_helpers",
"crates/clipboard",
"crates/keychain_parser",
"crates/integration_tests",
"crates/ipc",
"crates/net",
"crates/platform_authenticator",
"crates/protocol",
"crates/sdk",
"crates/server",
"crates/sos",
"crates/test_utils",
"crates/vfs",
"crates/web",
]
[workspace.dependencies]
sos-sdk = { version = "0.16", path = "crates/sdk" }
sos-vfs = { version = "0.2.2", path = "crates/vfs" }
xclipboard = { version = "0.16", path = "crates/clipboard" }
reqwest = { version = "0.12.5", default-features = false, features = ["json", "rustls-tls", "stream"] }
tokio-tungstenite = { version = "0.24", features = ["rustls-tls-webpki-roots"]}
async-stream = "0.3"
async-fd-lock = "0.2"
csv-async = { version = "1", features = ["tokio", "with_serde"] }
thiserror = "2"
anyhow = "1"
zstd = "0.13"
flate2 = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
secrecy = { version = "0.10", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros", "time", "sync"]}
serde_json = "1"
serde_with = { version = "3", features = ["base64"] }
tokio-util = { version = "0.7", default-features = false, features = ["io", "compat"] }
async-trait = "0.1"
async-recursion = "1"
typeshare = "1"
http = "1"
uuid = { version = "1", features = ["serde", "v4"] }
hex = { version = "0.4", features = ["serde"] }
k256 = { version = "0.13.1", features = ["ecdsa"] }
# matches the version in k256
sha1 = "0.10.6"
sha2 = "0.10.6"
sha3 = "0.10.6"
once_cell = "1"
rand = "0.8"
url = { version = "2", features = ["serde"] }
time = { version = "0.3.19", features = ["serde-human-readable", "local-offset", "wasm-bindgen"] }
time-tz = { version = "2", features = ["system"] }
futures = "0.3"
bs58 = "0.4"
urlencoding = "2"
parking_lot = "0.12"
indexmap = { version = "2.2", features = ["serde"] }
toml = "0.8"
bitflags = { version = "2", features = ["serde"] }
enum-iterator = "2"
tempfile = "3.5"
prost = "0.13"
clap = { version = "4.3.19", features = ["derive", "wrap_help", "env"] }
colored = "2"
arboard = { version = "3", default-features = false }
zeroize = "1"
bytes = "1.8"
serde_json_path = "0.7"
base64 = "0.22"
notify = { version = "7", features = ["serde"]}
axum-server = { version = "0.7", features = ["tls-rustls-no-provider"] }
tokio-rustls = { version = "0.26", default-features = false, features = ["tls12"] }
rustls = { version = "0.23", default-features = false, features = ["ring"] }
keyring = { version = "3.5", features = ["apple-native", "windows-native", "sync-secret-service"] }
[workspace.dependencies.rs_merkle]
version = "1.4.2"
[workspace.dependencies.binary-stream]
version = "9.1.0"
features = ["async"]
#path = "../../../../binary-stream"
[profile.release]
codegen-units = 1
lto = true
strip = true
opt-level = "z"