diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2023-03-01 01:13:25 -0500 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2023-03-01 01:13:25 -0500 |
commit | b7676d06363f71b4a856c5f5815f75e2bf7ca8ec (patch) | |
tree | b7e188aa4e1abaa69b1b9ee4fb6cd5a0ad60637d /resolver/Cargo.toml | |
parent | gpl (diff) | |
download | wrapper-b7676d06363f71b4a856c5f5815f75e2bf7ca8ec.tar.gz wrapper-b7676d06363f71b4a856c5f5815f75e2bf7ca8ec.tar.bz2 wrapper-b7676d06363f71b4a856c5f5815f75e2bf7ca8ec.zip |
inital working dns
Diffstat (limited to 'resolver/Cargo.toml')
-rw-r--r-- | resolver/Cargo.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/resolver/Cargo.toml b/resolver/Cargo.toml new file mode 100644 index 0000000..bc56d62 --- /dev/null +++ b/resolver/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "resolver" +version = "0.1.0" +edition = "2021" + +[dependencies] +packet = { path = "../packet" } +tokio = { version = "1", features = ["full"] } +async-recursion = "1"
\ No newline at end of file |