Files
@ 28df9835906f
Branch filter:
Location: CSY/reowolf/Cargo.toml - annotation
28df9835906f
1.2 KiB
text/plain
Reimplement namespaced identifier to support polymorphic args
This is somewhat of a temporary hack, as a namespaced identifier should
not really refer to types or polymorphic arguments. But we need a
tokenizer and a prepass to properly distinguish identifiers from types.
So it works, but error messages may be cryptic.
This is somewhat of a temporary hack, as a namespaced identifier should
not really refer to types or polymorphic arguments. But we need a
tokenizer and a prepass to properly distinguish identifiers from types.
So it works, but error messages may be cryptic.
06f259bf8031 06f259bf8031 50630ed25c60 1e885fa95b12 a10a7ee73040 1e885fa95b12 1e885fa95b12 06f259bf8031 06f259bf8031 06f259bf8031 a10a7ee73040 a10a7ee73040 833d72fe1c06 a10a7ee73040 a10a7ee73040 07b6791e8eb0 ba995098fc25 06f259bf8031 06f259bf8031 a10a7ee73040 162c3306c4af 700221108e9f 06f259bf8031 a10a7ee73040 06f259bf8031 6c04a99de862 06f259bf8031 fdc328afed95 fdc328afed95 bdcf814bde8c fdc328afed95 c8994576abce bdcf814bde8c 06f259bf8031 ba995098fc25 ba995098fc25 78de1ebfd99d 06f259bf8031 06f259bf8031 673882671c9a 673882671c9a 673882671c9a 673882671c9a 06f259bf8031 06f259bf8031 b972060a1f92 fdc328afed95 673882671c9a 869d51fc1127 6a7d3acfcb5e 6a7d3acfcb5e | [package]
name = "reowolf_rs"
version = "0.1.4"
authors = [
"Christopher Esterhuyse <esterhuy@cwi.nl, christopher.esterhuyse@gmail.com>",
"Hans-Dieter Hiep <hdh@cwi.nl>"
]
edition = "2018"
[dependencies]
# convenience macros
maplit = "1.0.2"
derive_more = "0.99.2"
# runtime
bincode = "1.3.1"
serde = { version = "1.0.114", features = ["derive"] }
getrandom = "0.1.14" # tiny crate. used to guess controller-id
# network
mio = { version = "0.7.0", package = "mio", features = ["udp", "tcp", "os-poll"] }
socket2 = { version = "0.3.12", optional = true }
# protocol
backtrace = "0.3"
lazy_static = "1.4.0"
# ffi
# socket ffi
libc = { version = "^0.2", optional = true }
os_socketaddr = { version = "0.1.0", optional = true }
[dev-dependencies]
# test-generator = "0.3.0"
crossbeam-utils = "0.7.2"
lazy_static = "1.4.0"
[lib]
crate-type = [
"rlib", # for use as a Rust dependency.
"cdylib" # for FFI use, typically C.
]
[features]
default = ["ffi"]
ffi = [] # see src/ffi/mod.rs
ffi_pseudo_socket_api = ["ffi", "libc", "os_socketaddr"]# see src/ffi/pseudo_socket_api.rs.
endpoint_logging = [] # see src/macros.rs
session_optimization = [] # see src/runtime/setup.rs
no_logging = [] # see src/macros.rs
|