Files @ 1bc57ab68e0e
Branch filter:

Location: CSY/reowolf/Cargo.toml - annotation

Max Henger
Merge branch 'feat-builtin-ip' into 'master'

feat: Builtin internet component

See merge request nl-cwi-csy/reowolf!6
[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.
]