-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (62 loc) · 1.82 KB
/
Copy pathCargo.toml
File metadata and controls
73 lines (62 loc) · 1.82 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "flea"
version = "0.1.2"
edition = "2024"
authors = ["Raine Virta"]
description = "Operate Tori.fi and Vinted marketplace workflows with coding agents"
repository = "https://github.com/raine/flea"
license = "MIT"
autotests = false
[[test]]
name = "cli_presentation"
path = "tests/cli_presentation.rs"
[[test]]
name = "cli_skill"
path = "tests/cli_skill.rs"
[[test]]
name = "live_search_smoke"
path = "tests/live_search_smoke.rs"
[[test]]
name = "live_smoke"
path = "tests/live_smoke.rs"
[[test]]
name = "marketplace_cli"
path = "tests/marketplace_cli.rs"
[[test]]
name = "observation_fixtures"
path = "tests/observation_fixtures.rs"
[[test]]
name = "vinted_item_fixtures"
path = "tests/vinted_item_fixtures.rs"
[[test]]
name = "vinted_listing_fixtures"
path = "tests/vinted_listing_fixtures.rs"
[[test]]
name = "vinted_listing_live_smoke"
path = "tests/vinted_listing_live_smoke.rs"
[dependencies]
base64 = "0.22"
clap = { version = "4.5", features = ["derive"] }
dirs = "6.0"
fs2 = "0.4"
hmac = "0.12"
image = { version = "0.25", default-features = false, features = ["jpeg", "png"] }
moxcms = "0.8"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
tempfile = "3.14"
thiserror = "2.0"
time = { version = "0.3", features = ["formatting"] }
tokio = { version = "1.48", features = ["macros", "rt-multi-thread", "time"] }
toon-format = { version = "0.5", default-features = false }
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
unicode-normalization = "0.1"
url = { version = "2.5", features = ["serde"] }
uuid = { version = "1.18", features = ["serde", "v4"] }
wait-timeout = "0.2"
[target.'cfg(unix)'.dependencies]
libc = "0.2"