-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (48 loc) · 1.2 KB
/
Cargo.toml
File metadata and controls
54 lines (48 loc) · 1.2 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
[package]
name = "sos-core"
version = "0.17.1"
edition = "2021"
description = "Core types for the Save Our Secrets SDK"
homepage = "https://saveoursecrets.com"
license = "MIT OR Apache-2.0"
repository = "https://github.com/saveoursecrets/sdk"
[features]
full = ["files"]
files = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
sos-vfs.workspace = true
thiserror.workspace = true
serde.workspace = true
url.workspace = true
rs_merkle.workspace = true
hex.workspace = true
mime_guess.workspace = true
uuid.workspace = true
rand.workspace = true
binary-stream.workspace = true
futures.workspace = true
time.workspace = true
time-tz.workspace = true
async-trait.workspace = true
serde_json.workspace = true
bs58.workspace = true
bitflags.workspace = true
secrecy.workspace = true
serde_with.workspace = true
typeshare.workspace = true
tokio.workspace = true
# crypto
sha2.workspace = true
pem.workspace = true
age.workspace = true
argon2.workspace = true
aes-gcm.workspace = true
chacha20poly1305.workspace = true
balloon-hash.workspace = true
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
etcetera.workspace = true
[build-dependencies]
rustc_version.workspace = true