-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathCargo.toml
More file actions
113 lines (109 loc) · 2.4 KB
/
Copy pathCargo.toml
File metadata and controls
113 lines (109 loc) · 2.4 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[workspace]
members = [
"crates/kobo-abi",
"crates/kobo-app-store",
"crates/kobo-bookview",
"crates/kobo-cli",
"crates/kobo-catalog",
"crates/kobo-comic",
"crates/kobo-doc",
"crates/kobo-doctor",
"crates/kobo-dict",
"crates/kobo-flashcards-format",
"crates/kobo-frame-host",
"crates/kobo-hal",
"crates/kobo-html",
"crates/kobo-image",
"crates/kobo-json",
"crates/kobo-net",
"crates/kobo-opml",
"crates/kobo-opds",
"crates/kobo-term",
"crates/kobo-text",
"crates/kobo-policy",
"crates/kobo-profile",
"crates/kobo-read",
"crates/kobo-protocol",
"crates/kobo-sdk",
"crates/kobo-shell",
"crates/kobo-stream",
"crates/kobo-state",
"crates/kobo-sidekickd",
"crates/kobo-sim",
"crates/kobo-smoke",
"crates/kobo-tap",
"crates/kobo-ui",
"crates/kobo-guard",
"crates/kobo-handoff",
"crates/kobo-wifi-trace",
"crates/kobo-xml",
"crates/kobod",
"examples/brief",
"examples/audiobook",
"examples/chat",
"examples/rss",
"examples/todo",
"examples/tictactoe",
"examples/terminal",
"examples/gallery",
"examples/gutenbird",
"examples/hello",
"examples/hn",
"examples/books",
"examples/launcher",
"examples/magnet",
"examples/settings",
"examples/sidekick",
"examples/store",
"apps/arxiv",
"apps/backgammon",
"apps/calibre-web",
"apps/crossword",
"apps/deck",
"apps/fanshelf",
"apps/fieldbook",
"apps/flashcards",
"apps/frame",
"apps/grimoire",
"apps/habits",
"apps/homepanel",
"apps/inkling",
"apps/kitchencard",
"apps/lichess",
"apps/logicpack",
"apps/morse",
"apps/musicstand",
"apps/needles",
"apps/nonograms",
"apps/panels",
"apps/paperterm",
"apps/parlor",
"apps/parser",
"apps/post",
"apps/pubquiz",
"apps/readlater",
"apps/rss-miniflux",
"apps/sudoku",
"apps/syncthing",
"apps/vault",
"apps/verses",
"apps/zotero-reader",
"tools/icon-import",
]
resolver = "2"
[workspace.package]
version = "0.3.15"
edition = "2021"
rust-version = "1.85.1"
license = "AGPL-3.0-only"
repository = "https://github.com/BandarLabs/Cobalt"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
all = "warn"
pedantic = "warn"
[profile.release]
codegen-units = 1
lto = "thin"
panic = "abort"
strip = "symbols"