Skip to content

Commit

Permalink
Disable chrono features to get rid of time dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
faern committed Aug 1, 2023
1 parent cd919e4 commit 163efe9
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 23 deletions.
17 changes: 2 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mullvad-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ publish.workspace = true
api-override = []

[dependencies]
chrono = { version = "0.4.26", features = ["serde"] }
chrono = { version = "0.4.26", default-features = false }
err-derive = "0.3.1"
futures = "0.3"
http = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion mullvad-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ path = "src/main.rs"
[dependencies]
anyhow = "1.0"
base64 = "0.13"
chrono = { version = "0.4.26", features = ["serde"] }
chrono = { version = "0.4.26", default-features = false }
clap = { version = "4.2.7", features = ["cargo", "derive"] }
env_logger = "0.10.0"
futures = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion mullvad-daemon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ api-override = ["mullvad-api/api-override"]

[dependencies]
cfg-if = "1.0"
chrono = { version = "0.4.26", features = ["serde"] }
chrono = { version = "0.4.26", default-features = false }
err-derive = "0.3.1"
fern = { version = "0.6", features = ["colored"] }
futures = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion mullvad-management-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition.workspace = true
publish.workspace = true

[dependencies]
chrono = { version = "0.4.26" }
chrono = { version = "0.4.26", default-features = false }
err-derive = "0.3.1"
mullvad-types = { path = "../mullvad-types" }
mullvad-paths = { path = "../mullvad-paths" }
Expand Down
2 changes: 1 addition & 1 deletion mullvad-relay-selector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition.workspace = true
publish.workspace = true

[dependencies]
chrono = "0.4.21"
chrono = { version = "0.4.26", default-features = false }
err-derive = "0.3.1"
futures = "0.3"
ipnetwork = "0.16"
Expand Down
2 changes: 1 addition & 1 deletion mullvad-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition.workspace = true
publish.workspace = true

[dependencies]
chrono = { version = "0.4.26", features = ["serde"] }
chrono = { version = "0.4.26", default-features = false, features = ["clock", "serde"] }
err-derive = "0.3.1"
ipnetwork = "0.16"
lazy_static = "1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion talpid-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ talpid-tunnel-config-client = { path = "../talpid-tunnel-config-client" }
talpid-tunnel = { path = "../talpid-tunnel" }
talpid-wireguard = { path = "../talpid-wireguard" }
zeroize = "1"
chrono = "0.4.21"
chrono = { version = "0.4.26", default-features = false }
tokio = { workspace = true, features = ["process", "rt-multi-thread", "fs"] }
rand = "0.8.5"

Expand Down
2 changes: 1 addition & 1 deletion talpid-wireguard/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ talpid-types = { path = "../talpid-types" }
talpid-tunnel-config-client = { path = "../talpid-tunnel-config-client" }
talpid-tunnel = { path = "../talpid-tunnel" }
zeroize = "1"
chrono = "0.4.21"
chrono = { version = "0.4.26", default-features = false }
tokio = { workspace = true, features = ["process", "rt-multi-thread", "fs"] }
tunnel-obfuscation = { path = "../tunnel-obfuscation" }
rand = "0.8.5"
Expand Down

0 comments on commit 163efe9

Please sign in to comment.