23497b1148
driver-network does conversions from syscall::Error to std::io::Error which needs the std feature enabled. Without this change rust-analyzer would report errors when trying to compile driver-network without any other crate in the same build to enable the std feature.
10 lines
241 B
TOML
10 lines
241 B
TOML
[package]
|
|
name = "driver-network"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
libredox = "0.1.3"
|
|
redox-scheme = { git = "https://gitlab.redox-os.org/redox-os/redox-scheme.git" }
|
|
redox_syscall = { version = "0.5", features = ["std"] }
|