Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Makefile for monolith

all: build build_gui
all: build build-gui
.PHONY: all

build:
@cargo build --locked
.PHONY: build

build_gui:
build-gui:
@cargo build --locked --bin monolith-gui --features="gui"
.PHONY: build_gui

Expand All @@ -19,7 +19,7 @@ format:
@cargo fmt --all --
.PHONY: format

format_check:
format-check:
@cargo fmt --all -- --check
.PHONY: format

Expand All @@ -32,7 +32,7 @@ lint:
# @cargo fix --allow-dirty --allow-staged
.PHONY: lint

lint_check:
lint-check:
@cargo clippy --
.PHONY: lint_check

Expand Down
3 changes: 2 additions & 1 deletion src/cookies.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use std::time::{SystemTime, UNIX_EPOCH};
use url::Url;

use crate::url::Url;

pub struct Cookie {
pub domain: String,
Expand Down
Loading