-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
46 lines (41 loc) · 1.27 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
[package]
name = "etebase"
description = "A Rust client library for Etebase"
homepage = "https://www.etebase.com"
repository = "https://github.com/etesync/etebase-rs/"
version = "0.6.0"
authors = ["Tom Hacohen <[email protected]>"]
edition = "2018"
rust-version = "1.63.0"
license = "BSD-3-Clause"
readme = "README.md"
keywords = ["encryption", "sync", "etesync", "cryptography", "firebase"]
categories = ["cryptography", "api-bindings", "database", "development-tools"]
include = [
"**/*.rs",
"Cargo.toml",
"LICENSE",
"README.md",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["lib"]
[dependencies]
sodiumoxide = "^0.2.7"
url = "^2.2.2"
serde = { version = "^1.0.136", features = ["derive"] }
serde_bytes = "^0.11.5"
serde_repr = "^0.1.7"
rmp-serde = "^1.1.0"
openssl-sys = "^0.9.84"
openssl = "^0.10.48"
reqwest = { version = "^0.11.10", features = ["blocking"], optional = true }
remove_dir_all = "^0.8.2"
# transitive depenceny through sodiumoxide, we need Signature::from_bytes()
ed25519 = "^1.3.0"
[build-dependencies]
# transitive build dependency of libsodium-sys, waiting for https://github.com/sodiumoxide/sodiumoxide/pull/478
cc = "1.0.79"
[features]
default = ["networking"]
networking = ["reqwest"]