-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
29 lines (27 loc) · 867 Bytes
/
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
[package]
name = "ipfs-webdav"
version = "0.1.1"
license = "MIT OR Apache-2.0"
authors = ["Vladislav Beskrovny <[email protected]>"]
repository = "https://github.com/vlad20012/ipfs-webdav"
homepage = "https://github.com/vlad20012/ipfs-webdav"
keywords = ["ipfs", "webdav", "fs", "filesystem", "http", "middleware"]
edition = "2021"
[dependencies]
ipfs-api-backend-hyper = { version = "0.6.0", features = ["with-send-sync"] }
ipfs-api-prelude = "0.6.0"
webdav-handler = "0.2.0"
hyper = { version = "0.14.7", features = [ "http1", "server", "stream", "runtime" ] }
tokio = { version = "1.17.0", features = ["rt-multi-thread", "macros"] }
futures = "0.3.21"
env_logger = "0.10.0"
log = "0.4.16"
unixfs-v1 = "0.3.0"
quick-protobuf = "0.8.0"
serde = "1.0.136"
bytes = "1.1.0"
common-multipart-rfc7578 = "0.6.0"
[profile.release]
lto = "fat"
codegen-units = 1
debug = 1