We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b6a788 commit ec84d02Copy full SHA for ec84d02
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "gradio"
3
-version = "0.3.1"
+version = "0.3.2"
4
edition = "2021"
5
authors = ["Jacob Lin <jacob@csie.cool>"]
6
description = "Gradio Client in Rust."
src/lib.rs
@@ -9,3 +9,8 @@ pub mod sync;
9
pub use client::*;
10
pub use data::*;
11
pub use stream::*;
12
+
13
+// re-export anyhow, serde, and tokio for convenience
14
+pub use anyhow;
15
+pub use serde;
16
+pub use tokio;
0 commit comments