-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (42 loc) · 1.25 KB
/
Copy pathCargo.toml
File metadata and controls
51 lines (42 loc) · 1.25 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
[package]
name = "esp32ircbot"
version = "0.0.2"
authors = ["Sami J. Mäkinen <sjm@iki.fi>"]
edition = "2021"
[patch.crates-io]
tokio = { git = "https://github.com/tokio-rs/tokio", branch = "master" }
mio = { git = "https://github.com/tokio-rs/mio", branch = "master" }
socket2 = { git = "https://github.com/rust-lang/socket2", branch = "master" }
[dependencies]
panic-halt = "0"
anyhow = "*"
axum = { version = "0", features = ["http1", "json"] }
embedded-svc = { version = "*", features = ["experimental"] }
embedded-hal = "*"
esp-idf-sys = { version = "*", features = ["binstart"] }
esp-idf-svc = { version = "*", features = ["experimental"] }
esp-idf-hal = "*"
futures = "*"
irc = { git = "https://github.com/aatxe/irc.git", default-features = false, features = [
] }
log = "*"
mio = { version = "*", features = ["log"] }
serde = "1"
tokio = { version = "1", features = ["rt", "net", "io-util"] }
tower-http = { version = "0" }
# tower-http = { version = "0", features = ["trace"] }
# tracing = "0.1"
# tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[build-dependencies]
build-data = "0"
embuild = "*"
anyhow = "*"
[profile.release]
strip = true
opt-level = 3
codegen-units = 1
debug = false
lto = "fat"
[profile.dev]
debug = false
opt-level = 3