rust-lang / rustwide

Execute your code on the Rust ecosystem.
Apache License 2.0
180 stars 41 forks source link

Update asyncronous dependencies #23

Closed Kixiron closed 4 years ago

Kixiron commented 4 years ago
jyn514 commented 4 years ago

If you update base64 to 0.11 it will remove another duplicate dependency:

$ cargo tree -d
base64 v0.10.1
└── rustwide v0.6.1 (/home/joshua/src/rustwide)

base64 v0.11.0
└── reqwest v0.10.4
    └── rustwide v0.6.1 (/home/joshua/src/rustwide)
...
jyn514 commented 4 years ago

tiny_http also causes a lot of duplicates, you could try updating it to 0.7. It's only a dev-dependency though.

jyn514 commented 4 years ago

Updating to base64 0.12 actually introduced a duplicate, up to you whether you think it's worth fixing or not.

cargo tree -d
base64 v0.11.0
└── reqwest v0.10.4
    └── rustwide v0.6.1 (/home/joshua/src/rustwide)

base64 v0.12.1
└── rustwide v0.6.1 (/home/joshua/src/rustwide)
pietroalbini commented 4 years ago

Thanks!