diff --git a/Cargo.lock b/Cargo.lock index 35f7bc5..6dd6ab4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -570,30 +570,30 @@ dependencies = [ [[package]] name = "rasn-compiler" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e980f4a383df8bbc6f18048f62a69973aa3edd590254348b6e9c043d0ff1aea5" +version = "0.1.2" dependencies = [ "chrono", + "clap", + "colored", "nom", "num", "proc-macro2", "quote", + "walkdir", "wasm-bindgen", ] [[package]] name = "rasn-compiler" version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "66c0223acd77838fdbed43796b240938fe907a2d16598e02f99561254db42241" dependencies = [ "chrono", - "clap", - "colored", "nom", "num", "proc-macro2", "quote", - "walkdir", "wasm-bindgen", ] @@ -602,7 +602,7 @@ name = "rasn-compiler-derive" version = "0.1.2" dependencies = [ "proc-macro2", - "rasn-compiler 0.1.1", + "rasn-compiler 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "syn 2.0.58", ] diff --git a/rasn-compiler-derive/Cargo.toml b/rasn-compiler-derive/Cargo.toml index 0ace16b..91395c5 100644 --- a/rasn-compiler-derive/Cargo.toml +++ b/rasn-compiler-derive/Cargo.toml @@ -16,6 +16,6 @@ authors = ["Kevin Westphal"] proc-macro = true [dependencies] -rasn-compiler = { path = "../rasn-compiler" } +rasn-compiler = { version = "0.1.2" } proc-macro2 = "1" syn= "2" diff --git a/rasn-compiler-tests/Cargo.toml b/rasn-compiler-tests/Cargo.toml index f2929df..a55327e 100644 --- a/rasn-compiler-tests/Cargo.toml +++ b/rasn-compiler-tests/Cargo.toml @@ -14,12 +14,12 @@ readme.workspace = true [dependencies] rasn-compiler-derive = { path = "../rasn-compiler-derive" } rasn-compiler = { path = "../rasn-compiler" } -rasn = { git = "https://github.com/librasn/rasn" } +rasn = { version = "0.14.0" } [dev-dependencies] bitvec = { version = "1" } bitvec-nom = { version = "0.2" } -rasn-kerberos = "0.10.0" +rasn-kerberos = "0.14.0" bytes = "1.4.0" num-bigint = "0.4.4" lazy_static = "1.4"