Files
@ e3cd0bb27952
Branch filter:
Location: CSY/reowolf/Cargo.toml - annotation
e3cd0bb27952
516 B
text/plain
Add stdlib dir option to bin-compiler args
06f259bf8031 06f259bf8031 c1b2442f23b2 1e885fa95b12 f9779acc048c f9779acc048c 1e885fa95b12 1e885fa95b12 560ed3c4dc1d 06f259bf8031 dc1a7211fdca dc1a7211fdca dc1a7211fdca dc1a7211fdca 06f259bf8031 a10a7ee73040 2c1fa43903ac 2c1fa43903ac bdcf814bde8c 637115283740 0e1a76667937 0e1a76667937 06f259bf8031 06f259bf8031 673882671c9a c1b2442f23b2 c1b2442f23b2 | [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.
]
|