add zed-actions crate

This commit is contained in:
Piotr Osiewicz 2023-06-12 11:51:39 +02:00 committed by Mikayla Maki
parent 0fe65b945f
commit 4b87ce8952
No known key found for this signature in database
4 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,9 @@
[package]
name = "zed-actions"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
gpui = { path = "../gpui" }

View file

@ -0,0 +1,14 @@
pub fn add(left: usize, right: usize) -> usize {
left + right
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}