Skip to content

Commit 9d97ed0

Browse files
committed
various cleanups re: windows build
Signed-off-by: Erik Hollensbe <git@hollensbe.org>
1 parent 83759ce commit 9d97ed0

File tree

3 files changed

+25
-44
lines changed

3 files changed

+25
-44
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
.token
33
test-token.txt
44
/test.yaml
5+
/windows.yaml
56
/*.pem
67
/*.crt
78
/*.key

Cargo.lock

Lines changed: 13 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: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,26 @@ edition = "2021"
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
regex = ">= 0"
18-
anyhow = ">= 0"
17+
regex = ">=0"
18+
anyhow = ">=0"
1919
clap = { version = "^3", features = ["derive"] }
20-
ipnetwork = ">= 0"
20+
ipnetwork = ">=0"
2121
trust-dns-resolver = { version = "^0.21.0", features = ["tokio-runtime", "dns-over-openssl"] }
2222
trust-dns-server = { version = "^0.21.0", features = ["trust-dns-resolver", "dns-over-openssl"] }
2323
tokio = { version = "1", features = ["full"] }
24-
zerotier-central-api = { version = "= 1.0.3" }
25-
zerotier-one-api = { version = "= 1.0.5" }
26-
serde = ">= 0"
27-
serde_json = ">= 0"
28-
serde_yaml = ">= 0"
24+
zerotier-central-api = { version = "=1.0.3" }
25+
zerotier-one-api = { version = "=1.0.5" }
26+
serde = ">=0"
27+
serde_json = ">=0"
28+
serde_yaml = ">=0"
2929
toml = ">=0"
30-
tinytemplate = ">= 0"
31-
rand = ">= 0"
30+
tinytemplate = ">=0"
31+
rand = ">=0"
3232
tracing = "0.1"
3333
tracing-log = "0.1"
3434
tracing-subscriber = "0.2"
3535
hex = ">=0"
36-
openssl = ">= 0"
36+
openssl = ">=0"
3737
async-trait = ">=0"
3838
lazy_static = ">=0"
3939

0 commit comments

Comments
 (0)