Skip to content

Commit 64600e4

Browse files
committed
pubic url serializer
1 parent 834092f commit 64600e4

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

cmd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cmd"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "continuous test"
55
repository = "https://github.com/basjoofan/core"
66
license = "MIT OR Apache-2.0"

lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lib"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "basjoofan library"
55
repository = "https://github.com/basjoofan/core"
66
license = "MIT OR Apache-2.0"

lib/src/http/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ mod url;
1414
use error::Error;
1515
pub use header::Headers;
1616
pub use time::Time;
17+
pub use url::Serializer;
1718
pub use url::Url;
1819

1920
use super::Parser;
2021
use super::Source;
2122
use super::Value;
2223
use std::collections::HashMap;
23-
use url::Serializer;
2424

2525
pub struct Client {
2626
#[cfg(not(target_arch = "wasm32"))]

lib/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ use value::Value;
1717

1818
pub use context::Context;
1919
pub use context::Record;
20+
pub use http::Serializer;
2021
pub use parser::Parser;
2122
pub use stat::Stats;
2223
pub use syntax::Source;

0 commit comments

Comments
 (0)