]>
Commit | Line | Data |
---|---|---|
1 | [package] | |
2 | name = "blog" | |
3 | version = "7.1.0" | |
4 | edition = "2021" | |
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" | |
8 | authors = ["Rubén Beltrán del Río <blog@r.bdr.sh>"] | |
9 | ||
10 | [dependencies] | |
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" | |
15 | ||
16 | [dev-dependencies] | |
17 | test_utilities = { path = "test_utilities" } | |
18 | ||
19 | [profile.release] | |
20 | strip = true | |
21 | lto = true | |
22 | panic = "abort" | |
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 | ] | |
29 | ||
30 | [package.metadata.deb] | |
31 | assets = [ | |
32 | ["target/release/blog", "/usr/bin/blog", "755" ], | |
33 | ["man/blog.1", "/usr/share/man/man1/blog.1", "644" ], | |
34 | ] | |
35 | ||
36 | [lints.clippy] | |
37 | pedantic = "warn" |