diff options
| author | Fuwn <[email protected]> | 2022-09-06 23:48:13 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-09-06 23:48:13 -0700 |
| commit | f793d07ebb2e4934f51e2a88ac338508736e3993 (patch) | |
| tree | ffc24ab9de7b9610969740e53feae9bdacf1b189 /src-tauri/Cargo.toml | |
| download | monkeytype-desktop-f793d07ebb2e4934f51e2a88ac338508736e3993.tar.xz monkeytype-desktop-f793d07ebb2e4934f51e2a88ac338508736e3993.zip | |
Diffstat (limited to 'src-tauri/Cargo.toml')
| -rw-r--r-- | src-tauri/Cargo.toml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml new file mode 100644 index 0000000..c422739 --- /dev/null +++ b/src-tauri/Cargo.toml @@ -0,0 +1,33 @@ +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[package] +name = "monkeytype" +version = "0.0.0" +authors = ["Fuwn <[email protected]>"] +edition = "2021" +rust-version = "1.57" +description = "Monkeytype, but for desktop" +readme = "../README.md" +homepage = "https://github.com/Fuwn/monkeytype-desktop" +repository = "https://github.com/Fuwn/monkeytype-desktop" +license = "GPL-3.0-only" +keywords = ["monkeytype", "typing", "typing-game", "typing-test", "typing-speed-test", "typing-speed"] + +# Slower builds, faster executables +[profile.release] +lto = "fat" +codegen-units = 1 +opt-level = 3 + +[build-dependencies] +tauri-build = { version = "1.0.0", features = [] } + +[dependencies] +discord-rich-presence = "0.2.2" +serde_json = "1.0" +serde = { version = "1.0", features = ["derive"] } +tauri = { version = "1.0.0", features = ["api-all"] } + +[features] +default = [ "custom-protocol" ] +custom-protocol = [ "tauri/custom-protocol" ] |