diff options
| author | mat <github@matdoes.dev> | 2022-09-19 23:05:05 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-09-19 23:05:05 -0500 |
| commit | e63f605c824d62231bc2741347f8743a62e00617 (patch) | |
| tree | f43846da56ef9813d2a6a7384bc00f4053c70260 /Cargo.lock | |
| parent | a87c4cf718fcf7b16fecf463333bd46310c88c87 (diff) | |
| download | azalea-drasl-e63f605c824d62231bc2741347f8743a62e00617.tar.xz | |
add shutdown function
Diffstat (limited to 'Cargo.lock')
| -rwxr-xr-x | Cargo.lock | 45 |
1 files changed, 43 insertions, 2 deletions
@@ -32,10 +32,19 @@ dependencies = [ ] [[package]] +name = "aho-corasick" +version = "0.7.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e" +dependencies = [ + "memchr", +] + +[[package]] name = "anyhow" -version = "1.0.59" +version = "1.0.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c91f1f46651137be86f3a2b9a8359f9ab421d04d941c62b5982e1ca21113adf9" +checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602" [[package]] name = "async-compression" @@ -321,10 +330,12 @@ dependencies = [ name = "bot" version = "0.1.0" dependencies = [ + "anyhow", "azalea-client", "azalea-core", "azalea-physics", "azalea-protocol", + "env_logger", "tokio", "uuid", ] @@ -580,6 +591,19 @@ dependencies = [ ] [[package]] +name = "env_logger" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c90bf5f19754d10198ccb95b70664fc925bd1fc090a0fd9a6ebc54acc8cd6272" +dependencies = [ + "atty", + "humantime", + "log", + "regex", + "termcolor", +] + +[[package]] name = "flate2" version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -699,6 +723,12 @@ dependencies = [ ] [[package]] +name = "humantime" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" + +[[package]] name = "idna" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1154,6 +1184,8 @@ version = "1.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1" dependencies = [ + "aho-corasick", + "memchr", "regex-syntax", ] @@ -1335,6 +1367,15 @@ dependencies = [ ] [[package]] +name = "termcolor" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" +dependencies = [ + "winapi-util", +] + +[[package]] name = "textwrap" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" |
