Skip to content

Commit 5b8e5f6

Browse files
committed
Rename
1 parent 4d1af1f commit 5b8e5f6

File tree

4 files changed

+40
-40
lines changed

4 files changed

+40
-40
lines changed

Cargo.lock

Lines changed: 33 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[package]
2-
name = "proxy-server"
3-
description = "proxy-server."
2+
name = "mock-server"
3+
description = "mock-server."
44
version = "1.0.0"
55
authors = ["Andrew Hickman <andrew.hickman1@sky.com>"]
6-
repository = "https://github.com/andrewhickman/proxy-server"
7-
documentation = "https://docs.rs/proxy-server"
6+
repository = "https://github.com/andrewhickman/mock-server"
7+
documentation = "https://docs.rs/mock-server"
88
license = "MIT OR Apache-2.0"
99
readme = "README.md"
1010
edition = "2018"
1111
build = "build.rs"
1212

1313
[[bin]]
14-
name = "serve-proxy"
14+
name = "serve-mock"
1515
path = "src/main.rs"
1616

1717
[dependencies]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# proxy-server
1+
# mock-server

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub struct Options {
2929

3030
#[tokio::main]
3131
async fn main() -> anyhow::Result<()> {
32-
env_logger::init_from_env(env_logger::Env::new().filter_or("PROXY_SERVER_LOG", "info"));
32+
env_logger::init_from_env(env_logger::Env::new().filter_or("MOCK_SERVER_LOG", "info"));
3333
log_panics::init();
3434

3535
let options = Options::from_args();

0 commit comments

Comments
 (0)