Skip to content
Snippets Groups Projects
Commit e96282c9 authored by Matt Johnston's avatar Matt Johnston
Browse files

Update sshwire_derive for virtue 0.0.11

parent 892e84bf
No related merge requests found
......@@ -10,4 +10,4 @@ description = "Derive macros for Sunset SSH packet encoder/decoder"
proc-macro = true
[dependencies]
virtue = "0.0"
virtue = "0.0.11"
......@@ -38,7 +38,7 @@ fn encode_inner(input: TokenStream) -> Result<TokenStream> {
}
}
if env::var(ENV_SSHWIRE_DEBUG).is_ok() {
gen.export_to_file("SSHEncode");
gen.export_to_file("sshwire", "SSHEncode");
}
gen.finish()
}
......@@ -56,7 +56,7 @@ fn decode_inner(input: TokenStream) -> Result<TokenStream> {
}
}
if env::var(ENV_SSHWIRE_DEBUG).is_ok() {
gen.export_to_file("SSHDecode");
gen.export_to_file("sshwire", "SSHDecode");
}
gen.finish()
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment