Skip to content

Commit 3b21ce8

Browse files
committed
Add comparison with string
1 parent 8173ab8 commit 3b21ce8

File tree

4 files changed

+41
-17
lines changed

4 files changed

+41
-17
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nested-env-parser"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
edition = "2021"
55
description = "Nested Env Parser is a crate for getting the final value of a string with nested environment variables."
66
keywords = [ "config", "clap" ]
@@ -17,4 +17,4 @@ documentation = "https://docs.rs/nested-env-parser"
1717
envmnt = "0.10.4"
1818

1919
[dev-dependencies]
20-
clap = { version = "4.2.7", features = ["derive", "env"] }
20+
clap = { version = "4.3.0", features = ["derive", "env"] }

README.md

+4-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![documentation][docs-badge]][docs-url]
33
[![MIT License][mit-badge]][mit-url]
44

5-
[crates-badge]: https://img.shields.io/crates/v/nested-env-parser.svg
5+
[crates-badge]: https://img.shields.io/crates/v/nested-env-parser?logo=rust&logoColor=white&style=flat-square
66
[crates-url]: https://crates.io/crates/nested-env-parser
77
[docs-badge]: https://docs.rs/nested-env-parser/badge.svg
88
[docs-url]: https://docs.rs/nested-env-parser
@@ -42,9 +42,7 @@ fn main() {
4242

4343
let opts = Opts::parse();
4444

45-
let value: &str = &opts.value_with_env;
46-
47-
assert_eq!("Hello, world!", value);
45+
assert_eq!("Hello, world!", &opts.value_with_env);
4846
}
4947
```
5048
### On Windows
@@ -66,12 +64,10 @@ fn main() {
6664

6765
let opts = Opts::parse();
6866

69-
let value: &str = &opts.value_with_env;
70-
71-
assert_eq!("Hello, world!", value);
67+
assert_eq!("Hello, world!", &opts.value_with_env);
7268
}
7369
```
7470

75-
Current version: 1.0.0
71+
Current version: 1.1.0
7672

7773
License: MIT

README.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![documentation][docs-badge]][docs-url]
33
[![MIT License][mit-badge]][mit-url]
44

5-
[crates-badge]: https://img.shields.io/crates/v/nested-env-parser.svg
5+
[crates-badge]: https://img.shields.io/crates/v/nested-env-parser?logo=rust&logoColor=white&style=flat-square
66
[crates-url]: https://crates.io/crates/nested-env-parser
77
[docs-badge]: https://docs.rs/nested-env-parser/badge.svg
88
[docs-url]: https://docs.rs/nested-env-parser

src/lib.rs

+34-6
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@
2929
//!
3030
//! let opts = Opts::parse();
3131
//!
32-
//! let value: &str = &opts.value_with_env;
33-
//!
34-
//! assert_eq!("Hello, world!", value);
32+
//! assert_eq!("Hello, world!", &opts.value_with_env);
3533
//! }
3634
//! ```
3735
//! ## On Windows
@@ -53,9 +51,7 @@
5351
//!
5452
//! let opts = Opts::parse();
5553
//!
56-
//! let value: &str = &opts.value_with_env;
57-
//!
58-
//! assert_eq!("Hello, world!", value);
54+
//! assert_eq!("Hello, world!", &opts.value_with_env);
5955
//! }
6056
//! ```
6157
#![warn(missing_docs)]
@@ -96,4 +92,36 @@ impl Deref for Env {
9692
fn deref(&self) -> &Self::Target {
9793
&self.0
9894
}
95+
}
96+
97+
impl<T> AsRef<T> for Env
98+
where
99+
T: ?Sized,
100+
<Env as Deref>::Target: AsRef<T>,
101+
{
102+
fn as_ref(&self) -> &T {
103+
self.deref().as_ref()
104+
}
105+
}
106+
107+
impl PartialEq<String> for Env {
108+
fn eq(&self, other: &String) -> bool {
109+
*self.deref() == *other
110+
}
111+
}
112+
impl PartialEq<Env> for String {
113+
fn eq(&self, other: &Env) -> bool {
114+
*self == *other.deref()
115+
}
116+
}
117+
118+
impl PartialEq<str> for Env {
119+
fn eq(&self, other: &str) -> bool {
120+
*self.deref() == *other
121+
}
122+
}
123+
impl PartialEq<Env> for str {
124+
fn eq(&self, other: &Env) -> bool {
125+
*self == *other.deref()
126+
}
99127
}

0 commit comments

Comments
 (0)