-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 1.37 KB
/
Cargo.toml
File metadata and controls
42 lines (38 loc) · 1.37 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
[package]
name = "fractal-storage"
version = "0.2.0"
edition = "2021"
authors = ["Patrick Elsen <patrick@fractalnetworks.co>"]
description = "Storage metadata service for Fractal Networks docker plugin."
license = "AGPL-3.0-only"
repository = "https://github.com/fractalnetworksco/storage"
[dependencies]
rocket = { version = "0.5.0-rc", features = ["json"] }
structopt = "0.3.21"
anyhow = "1.0.38"
sqlx = { version = "0.5", features = [ "runtime-tokio-rustls", "sqlite", "any", "postgres" ] }
env_logger = "0.8.3"
serde = { version = "1.0.124", features = ["derive"] }
tokio = { version = "1.3.0", features = ["fs"] }
log = "0.4.14"
byteorder = "1.4.3"
fractal-storage-client = { path = "./client", version = "0.2.0", features = ["rocket"] }
rust-s3 = { version = "0.28.0", default-features = false, features = ["tokio-rustls-tls", "tags"], optional = true }
fractal-auth-client = { git = "https://github.com/fractalnetworksco/auth-client", version = "0.1", features = ["rocket"] }
url = "2.2.2"
thiserror = "1.0.31"
uuid = { version = "1.0.0", features = ["v4"] }
async-trait = "0.1.53"
base64 = "0.13.0"
hex = "0.4.3"
optional-field = "0.1.2"
[features]
default = ["backend-local", "insecure-auth"]
backend-local = []
backend-s3 = ["rust-s3"]
insecure-auth = ["fractal-auth-client/insecure-stub"]
[dev-dependencies]
rand = "0.8.5"
reqwest = "0.11.10"
[workspace]
members = [".", "client", "tool"]