diff --git a/harmonia/Cargo.toml b/harmonia/Cargo.toml deleted file mode 100644 index 006fba37..00000000 --- a/harmonia/Cargo.toml +++ /dev/null @@ -1,39 +0,0 @@ -[package] -name = "harmonia" -version = "2.0.0" -authors = [ - "Jörg Thalheim ", - "Simon Hauser " -] -edition = "2021" -license = "MIT" -homepage = "https://github.com/nix-community/harmonia" -repository = "https://github.com/nix-community/harmonia.git" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] -actix-web = { version = "4", default-features = false, features = ["macros", "compress-zstd", "cookies", "openssl"] } -openssl = { version = "0.10" } -actix-files = "0.6.6" -log = "0.4" -env_logger = "0.11" -serde = { version = "1.0", features = ["derive"] } -serde_json = "1.0" -toml = "0.8" -mime = "0.3" -base64 = "0.22" -tokio = { version = "1", features = ["sync", "fs", "io-util", "rt", "macros"] } -tokio-stream = { version = "0.1" } -http-range = "0.1" -askama_escape = "0.10.3" -percent-encoding = "2.3.1" -anyhow = "1.0.93" -tempfile = "3.10.1" -url = "2.5.2" -async-compression = { version = "0.4.17", features = ["tokio", "bzip2"] } -tokio-util = "0.7.12" - - -[build-dependencies] -pkg-config = "0.3" diff --git a/scripts/create-release.sh b/scripts/create-release.sh index a284bb9f..73848229 100755 --- a/scripts/create-release.sh +++ b/scripts/create-release.sh @@ -28,9 +28,9 @@ if [[ "$unpushed_commits" != "" ]]; then echo -e "\nThere are unpushed changes, exiting:\n$unpushed_commits" >&2 exit 1 fi -sed -i -e "s!^version = \".*\"\$!version = \"${version}\"!" harmonia/Cargo.toml +sed -i -e "s!^version = \".*\"\$!version = \"${version}\"!" Cargo.toml cargo build -git add Cargo.lock harmonia/Cargo.toml +git add Cargo.lock Cargo.toml nix flake check -vL git commit -m "bump version harmonia-v${version}" git tag "harmonia-v${version}"