Files @ 2c1fa43903ac
Branch filter:

Location: CSY/reowolf/Cargo.toml

MH
Several unfinished attempts at introducing polling
[package]
name = "reowolf_rs"
version = "1.2.0"
authors = [
	"Max Henger <henger@cwi.nl>",
	"Christopher Esterhuyse <esterhuy@cwi.nl>",
	"Hans-Dieter Hiep <hdh@cwi.nl>"
]
edition = "2021"

[features]
default=["internet"]
internet=["libc"]

[dependencies]

libc = { version = "^0.2", optional = true } # raw sockets
mio = { version = "0.8", features = ["os-poll"] } # cross-platform IO notification queue

# randomness
rand = "0.8.4"
rand_pcg = "0.3.1"

[lib]
crate-type = [
	"rlib", # for use as a Rust dependency.
]