-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (36 loc) · 1.14 KB
/
Cargo.toml
File metadata and controls
39 lines (36 loc) · 1.14 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
[package]
name = "ditto"
version = "0.1.0"
edition = "2024"
license = "AGPL-3.0-only"
authors = ["ditto contributors"]
description = "Generative art with nannou: image in, stylized image out (CLI & Web API)"
readme = "README.md"
[dependencies]
nannou = "0.19"
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "webp"] }
clap = { version = "4.5", features = ["derive"] }
thiserror = "2.0"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.41", features = ["rt-multi-thread", "macros"] }
axum = { version = "0.7", features = ["macros", "multipart"] }
tower = "0.5"
tower-http = { version = "0.5", features = ["cors", "trace"] }
bytes = "1.7"
mime = "0.3"
uuid = { version = "1.10", features = ["v4"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
tempfile = "3.12"
rand = "0.8"
base64 = "0.22"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
reqwest = { version = "0.12", features = ["json", "multipart"] }
tokio = { version = "1.41", features = ["rt-multi-thread", "macros"] }
[profile.release]
codegen-units = 1
lto = "thin"