-
Notifications
You must be signed in to change notification settings - Fork 1k
Comparing changes
Open a pull request
base repository: hyperium/tonic
base: v0.4.0
head repository: hyperium/tonic
compare: v0.4.1
- 12 commits
- 37 files changed
- 12 contributors
Commits on Jan 20, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 4fe5beb - Browse repository at this point
Copy the full SHA 4fe5bebView commit details
Commits on Jan 21, 2021
-
Better example code for google protos (#542)
* Better example code for google protos * Try fix windows build * Try fix windows build * Remove generated code in repo
Configuration menu - View commit details
-
Copy full SHA for 729308b - Browse repository at this point
Copy the full SHA 729308bView commit details
Commits on Feb 2, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 07d2f98 - Browse repository at this point
Copy the full SHA 07d2f98View commit details -
Update tokio dependencies in tutorials to be compatible with tonic 0.4 (
#549) Bumps routeguide tutorial dependency to tokio 1.0 for compatability with tonic 0.4. Also adds required rt-multi-thread feature and drops unused and now unsupported stream feature. Signed-off-by: hasheddan <georgedanielmangum@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for cb9ed18 - Browse repository at this point
Copy the full SHA cb9ed18View commit details
Commits on Feb 12, 2021
-
fix: Depend on at least tower 0.4.4 (#554)
In tower 0.4.0 we missed a couple of re-exports that tonic 0.4.0 depends on. So tonic really depends on tower at least version 0.4.1. Since specifying your tower depedency as 0.4 means you might get 0.4.0, you might get build errors when updating tonic. Such as [#553] and [#552]. This fixes that by bumping tonic's dependency on tower to 0.4.4. That means users will get at least tower version 0.4.4, but semver compatible updates are still allowed. Fixes #553 [#553]: #553 [#552]: #552
Configuration menu - View commit details
-
Copy full SHA for ca3b9a1 - Browse repository at this point
Copy the full SHA ca3b9a1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4f5e160 - Browse repository at this point
Copy the full SHA 4f5e160View commit details
Commits on Feb 13, 2021
-
chore: add FromStr for Endpoint (#558)
This is particularly handy when combined with `clap::value_t`. Here's demo of it working with Clap: ```bash cargo +stable init --bin tonic-demo cd tonic-demo cat <<-EOF >> Cargo.toml clap = "*" tonic = { path = "../hyperium/tonic/tonic" } EOF cat <<-EOF > src/main.rs use clap::{value_t, App, Arg}; use tonic::transport::Endpoint; fn main() { let matches = App::new("tonic-demo") .arg(Arg::with_name("host")) .get_matches(); let x = value_t!(matches.value_of("host"), Endpoint); println!("{:?}", x); } EOF cargo +stable run -- https://127.0.0.1:443 ``` Signed-off-by: Ana Hobden <operator@hoverbear.org>
Configuration menu - View commit details
-
Copy full SHA for f49d4bd - Browse repository at this point
Copy the full SHA f49d4bdView commit details
Commits on Feb 16, 2021
-
feat: Implement gRPC Reflection Service (#340)
Co-authored-by: Samani G. Gikandi <samani@gojulas.com>
Configuration menu - View commit details
-
Copy full SHA for c54f247 - Browse repository at this point
Copy the full SHA c54f247View commit details
Commits on Feb 17, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 49d517f - Browse repository at this point
Copy the full SHA 49d517fView commit details
Commits on Feb 23, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 61555ff - Browse repository at this point
Copy the full SHA 61555ffView commit details
Commits on Mar 11, 2021
-
Configuration menu - View commit details
-
Copy full SHA for ea56e2e - Browse repository at this point
Copy the full SHA ea56e2eView commit details
Commits on Mar 16, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 7889c7f - Browse repository at this point
Copy the full SHA 7889c7fView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v0.4.0...v0.4.1