-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (39 loc) · 1.14 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
[package]
name = "ozone-ws"
version = "0.1.0"
authors = ["Christian Visintin <[email protected]>"]
edition = "2021"
categories = ["network-programming"]
description = "Web service to scan files with ClamAV"
homepage = "https://github.com/veeso-dev/ozone"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
keywords = ["smb", "samba", "network-protocol", "smb2", "smb3"]
license = "GPL-3.0+"
readme = "README.md"
repository = "https://github.com/veeso-dev/ozone"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "ozone"
path = "src/main.rs"
[dependencies]
actix-multipart = "^0.6"
actix-web = "^4"
anyhow = "^1"
bytes = "^1.4"
envy = "^0.4"
futures-util = "^0.3"
lazy_static = "^1.4"
reqwest = { version = "^0.11", features = ["rustls-tls"] }
serde = { version = "^1.0.0", features = ["derive"] }
serde_json = "^1.0.0"
serde_with = "^3"
tempfile = "^3"
tokio = { version = "^1", features = ["io-std", "net", "fs"] }
tracing = "^0.1"
tracing-subscriber = "^0.3"
thiserror = "^1.0"
[dev-dependencies]
env_logger = "^0.10"
pretty_assertions = "^1.0.0"
[features]
with-containers = []