forked from shavac/ubus-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 995 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (28 loc) · 995 Bytes
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
[package]
name = "ubus"
version = "0.2.0-beta.3"
authors = ["James Lee <jbit@jbit.net>", "Kshava Lewis <knightmare1980@gmail.com>", "Fifv <fifvzheyli@gmail.com>"]
edition = "2024"
description = "Work-in-progress: OpenWRT ubus client library in pure Rust"
keywords = ["embedded", "openwrt"]
categories = ["embedded", "os", "os::linux-apis", "api-bindings"]
license = "BSD-2-Clause"
[badges]
maintenance = { status = "experimental" }
[features]
default = []
# no_std = []
[dependencies]
env_logger = "0.11.8"
log = "0.4.28"
serde = { version = "1.0.193", default-features = false, features = ["derive"] }
serde_json = "1.0.108"
storage_endian = { version = "0.1.0" }
thiserror = "1.0.52"
tokio = { version = "1.48.0", features = ["full"] }
[profile.release]
panic = 'abort'
opt-level = 'z' # Optimize for size.
lto = true # Enable link time optimization.
strip = true
codegen-units = 1