This commit is contained in:
2021-08-01 13:21:01 +02:00
commit 49badfeafa
6 changed files with 47 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
indent_style = tab
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
+3
View File
@@ -0,0 +1,3 @@
/target/
/Cargo.lock
/flake.lock
+1
View File
@@ -0,0 +1 @@
hard_tabs = true
+7
View File
@@ -0,0 +1,7 @@
[package]
name = "simple-easing"
version = "0.0.0"
edition = "2018"
repository = "https://gitlab.com/chpio/simple-easing"
[dependencies]
+24
View File
@@ -0,0 +1,24 @@
{
description = "simple-easing";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in {
devShell = pkgs.mkShell {
name = "simple-easing";
buildInputs = with pkgs; [
cargo
rustc
rustfmt
rust-analyzer
];
};
}
);
}
View File