-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (48 loc) · 1.61 KB
/
Cargo.toml
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
[package]
name = "sil"
version = "2.0.0"
authors = ["Fenhl <fenhl@fenhl.net>"]
edition = "2021"
[lints.rust]
rust_2018_idioms = "deny"
unsafe_code = "forbid"
unused = "deny"
unused_crate_dependencies = "deny"
unused_import_braces = "deny"
unused_lifetimes = "deny"
unused_qualifications = "deny"
warnings = "deny"
[profile.release]
lto = true
strip = true
[build-dependencies]
git2 = "0.15"
thiserror = "1"
[dependencies]
async-proto = { version = "0.15", features = ["tokio-tungstenite"] }
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = { version = "0.6", features = ["serde"] }
clap = { version = "4", features = ["derive"] }
enum-iterator = "1"
fontdue = "0.9"
futures = "0.3"
gefolge-websocket = { git = "https://github.com/dasgefolge/gefolge-websocket", branch = "main" }
if_chain = "1"
itertools = "0.10"
png = "0.17"
rand = { version = "0.8", default-features = false, features = ["small_rng"] }
raw-window-handle = "0.6.0"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "json"] }
serde = { version = "1", features = ["derive"] }
serde_json = { package = "serde_json_path_to_error", version = "0.1" }
softbuffer = "0.4"
text = { git = "https://github.com/fenhl/text", branch = "main" }
thiserror = "1"
tiny-skia = "0.11"
tokio = { version = "1", features = ["fs", "macros", "process", "rt-multi-thread", "sync", "time"] }
tokio-tungstenite = { version = "0.17", features = ["rustls-tls-webpki-roots"] }
wheel = { git = "https://github.com/fenhl/wheel", branch = "main", features = ["chrono"] }
winit = "0.30"
xdg-basedir = "1"
[target.'cfg(windows)'.dependencies]
directories = "4"