]>
Commit | Line | Data |
---|---|---|
d620665f RBR |
1 | [package] |
2 | name = "blog" | |
d7fef30a | 3 | version = "7.1.0" |
d620665f | 4 | edition = "2021" |
57351e33 RBR |
5 | license = "AGPL-3.0-or-later" |
6 | description = "Command line tool to author and manage a semi-ephemeral™ blog with a gemini archive." | |
7 | homepage = "https://r.bdr.sh/blog.html" | |
a82d0fc3 | 8 | authors = ["Rubén Beltrán del Río <blog@r.bdr.sh>"] |
d620665f RBR |
9 | |
10 | [dependencies] | |
d7fef30a RBR |
11 | gema_texto = "1.0.0" |
12 | time = { version = "0.3.37", features = ["macros", "formatting"] } | |
13 | serde = { version = "1.0.217", features = ["derive"] } | |
14 | serde_json = "1.0.134" | |
ce17f0a9 | 15 | |
0fca7c54 RBR |
16 | [dev-dependencies] |
17 | test_utilities = { path = "test_utilities" } | |
18 | ||
ce17f0a9 RBR |
19 | [profile.release] |
20 | strip = true | |
21 | lto = true | |
22 | panic = "abort" | |
57351e33 RBR |
23 | |
24 | [package.metadata.generate-rpm] | |
25 | assets = [ | |
26 | { source = "target/release/blog", dest = "/usr/bin/blog", mode = "755" }, | |
27 | { source = "man/blog.1", dest = "/usr/share/man/man1/blog.1", mode = "644" }, | |
28 | ] | |
94b6e2ec RBR |
29 | |
30 | [package.metadata.deb] | |
31 | assets = [ | |
c44af4d3 RBR |
32 | ["target/release/blog", "/usr/bin/blog", "755" ], |
33 | ["man/blog.1", "/usr/share/man/man1/blog.1", "644" ], | |
94b6e2ec | 34 | ] |
d7fef30a RBR |
35 | |
36 | [lints.clippy] | |
37 | pedantic = "warn" |