Hello, Rust

This commit is contained in:
Manav Rathi
2025-07-31 11:43:53 +05:30
parent f060d10802
commit e2dd3b462f
4 changed files with 21 additions and 0 deletions

1
rust/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/target

7
rust/Cargo.lock generated Normal file
View File

@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "ente-rs"
version = "0.0.1"

10
rust/Cargo.toml Normal file
View File

@@ -0,0 +1,10 @@
[package]
name = "ente-rs"
version = "0.0.1"
edition = "2024"
description = "Rust bindings and CLI for ente.io"
homepage = "https://ente.io"
repository = "https://github.com/ente-io/ente"
license = "AGPL-3.0-only"
[dependencies]

3
rust/src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Ente!");
}