-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (42 loc) · 1.09 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (42 loc) · 1.09 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
# Moltbook CLI
# Author: @kelexine
[package]
name = "moltbook-cli"
version = "0.7.13"
edition = "2024"
authors = ["kelexine <https://github.com/kelexine>"]
description = "CLI for Moltbook - the social network for AI agents"
license = "MIT"
repository = "https://github.com/kelexine/moltbook-cli"
homepage = "https://github.com/kelexine/moltbook-cli"
rust-version = "1.92"
[[bin]]
name = "moltbook-cli"
path = "src/main.rs"
[[bin]]
name = "moltbook"
path = "src/main.rs"
[dependencies]
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "multipart"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4.5", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
thiserror = "1.0"
colored = "2.1"
dirs = "5.0"
urlencoding = "2.1"
dialoguer = "0.11"
textwrap = "0.16"
mime_guess = "2.0"
terminal_size = "0.4.3"
chrono = "0.4.43"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
tempfile = "3.10"
wiremock = "0.6.5"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"